Questions tagged [modelio]

Modelio is an Open Source UML tool developed by Modeliosoft, based in Paris, France. It supports the UML2 and BPMN standards.

Modelio is an Open Source UML tool developed by Modeliosoft, based in Paris, France.
It supports the UML2 and BPMN standards.

Wikipedia: http://en.wikipedia.org/wiki/Modelio

50 questions
0
votes
1 answer

How can I delete all attributes owned by a classifier in modelio?

How to remove attribute from owner in modelio? Here is my code; EList attributeList = classifier.getOwnedAttribute(); attributeList.removeAll(attributeList); And I got an error like this
0
votes
1 answer

Modelio 4.0 Installation on Mac OS

I'm following the automatic procedure (i.e. script) described on https://www.modelio.org/forum/8-installation/3962-running-modelio-on-a-macos-x-workstation.html Modelio 4.0 is installed in the same folder as the script.sh file. When I type: bash…
Robin G
  • 35
  • 1
  • 3
0
votes
1 answer

AttributeError: 'org.modelio.metamodel.impl.uml.behavior.activityMo' object has no attribute 'getOwnedNode'

I'm using a script to find all paths in an Activity Diagram. To do it, I use Modelio 4.0. I put the below script in a macro. Script ## return first initial node in the selected activity def getInitialPoint(act): for node in act.getOwnedNode(): …
Royce
  • 1,557
  • 5
  • 19
  • 44
0
votes
1 answer

Is ModelIO/MDLAsset myopic?

A common way to load an ".obj" using Swift/MDLAsset uses code like import ModelIO var theURL: URL var theAsset: MDLAsset theURL = Bundle.main.url(forResource: "cube", withExtension: "obj")! theAsset = MDLAsset(url: theURL) This only works for…
user60392
  • 3
  • 1
0
votes
1 answer

Can't load texture of USDZ file via script using ModelIO library on Xcode with swift

I added an USDZ file to my Xcode project. The USDZ file is showing as normal in the project in Xcode open on my mac, however, when I try to load it via code using modelIO library it loads the mesh but it doesn't load the texture. In the snapshots…
Musab Kara
  • 91
  • 5
0
votes
1 answer

jHipster UML, Invalid Type Exception with Modelio

I'm trying to generate the entities on jHipster, from the .xmi Modelio UML file, this error came up: An error has occurred: WrongTypeException Error message: The type 'ELong' isn't supported by JHipster.
0
votes
2 answers

Modelio and Overture, does it work separately?

So.. I’m trying to work with both Modelio and Overture but both programs is really new to me. I want to make a model in Modelio as a first, and then export it to Overture. But is it supposed to work this way, or am I supposed to make it separately?
KamK
  • 61
  • 4
0
votes
0 answers

Why does MTKMesh(mesh:device:) always fail to create an MTKMesh?

In am iOS app I am trying to load a SceneKit .scn file with a single quad in it and generate an MTKMesh from it. No joy. I load the SCNScene file: guard let scene = SCNScene(named:"scenes.scnassets/quad.scn") else { fatalError("Error: Can not…
dugla
  • 12,774
  • 26
  • 88
  • 136
0
votes
1 answer

How do I load/parse a SceneKit .scn file into my Metal app?

I want to create a 3D scene with the SceneKit modeler and then read it into my Metal app. I see there is SceneKit and ModelIO API to do this but I am unclear on how the pieces fit together. So, what I need is path from .scn file -> MDL Mesh ->…
dugla
  • 12,774
  • 26
  • 88
  • 136
0
votes
1 answer

How to add labels to flow lines in modelio?

Like in the picture above (Land and Sea), how to add labels to flow lines in Modelio?
uylmz
  • 1,480
  • 2
  • 23
  • 44
0
votes
1 answer

Modelio : default stereotypes are unavailable

I use Modelio 3.2 and i have a problem with default stereotype. For instance, when i create two use cases and i add an "extends" links in the use cases (on an existing use case diagram, where i already create an "extends" links in the past...…
C. Thubert
  • 57
  • 1
  • 6
0
votes
1 answer

Generating the otherEntityField From Modelio using jhipster-uml on a one-to-many relationship

I am trying to generate a Jhipster(2.27.0) application from Modelio(3.4.1) model with JHipster-UML(1.6.0). On this example I have a one-to-many relationship between 2 entities (assessment and answer). I want to generate the 'otherEntityField'…
0
votes
1 answer

Validations within Modelio to use with jhipster-uml

I'm using Modelio to create an xmi to use with jhipster-uml. Is there a way to add validation rules to the attributes in Modelio so that when the xmi is imported, the validation rules(required, minimum length, maximum length, etc.) would be in the…
J J
  • 93
  • 6
0
votes
1 answer

How to insert a 2D attribute in a class diagram using Modelio tool?

I need to insert a 2D attribute and show it as a parameter of a function in my class diagram using Modelio tool.
Andy
  • 33
  • 5
0
votes
1 answer

How to add DateTime (from joda library) to Modelio and generate entity using jhipster-uml

We are using Modelio to create an entity diagram and have it exported as an XMI file. Once we have the XMI, we can use jhipster uml tool to generate the source. Since we need a date field in some entities, we added a Data Type called DateTime in…
Vishal Joshi
  • 161
  • 1
  • 2
  • 6