Hi,

Now I have a stand alone application which generate model.uml
I found all the documentations here :
http://www.eclipse.org/modeling/mdt/uml2/docs/articles/Getting_Started_with_UML2/article.html

As Guenther, I would like to automatically generate the graphical model.umldi

I know the wizard, I used it to generate a SAM graphical model (.samdi) from the
model (.sam). The layout was horrible but it worked.
But this time, the wizzard produces an empty umldi from my sequence diagram
model.uml . I tried drag&drop from the outline without success.
You can test :
Use the editor to create a couple uml/umldi files of an sequence diagram.
then paste the uml in other project and try to generate umldi from it.

Is there a kind of physical engine to deal with graphical object collision in
editors ? At least it would be nice to organize freely thoses nasty transition
arrows.

Indeed, I try to reverse the model-driven engineering process. Why not ?

Rgds,
Simon


To do it automaticly I think we need a sort of

Hi Raphael,

This step is known to me, but I try to develop an eclipse plugin and want to use topcased as editor. Therefore I search to create the umldi automatically without user interaction.

Have a nice day

Guenther

Raphael FAUDOU schrieb:
Hi guenther,

in fact, you can create a .umldi from a .uml with the TOPCASED UML diagram wizard. You just have to launch the wizard (File>new UML diagram) and select "create from an existing model" option. Then you select your .uml model and click "finish". A .umldi file is created , referencing the .uml file.

regards
raphaƫl


Hi Jacques,

What I want to have is something like adding the class manually to a diagram. I generate it on the uml and I would like to generate it in the same way on the umldi diagram. I do generate automatically UML diagrams and I would like to generate the umldi with it, so that the software architect could verify it manually.

So in this case if I have an adapter class Package which wraps the UML Package implemented by the Eclipse UML implementation, Id like to have a function like this.

Package p;
Diagram d;

public Class createClass(String name) {
        Class c p.createOwnedClass(name);
        d.add(c);
        return c;
}

It is not an obligation like this, but I don't want to go through the editor to make some real easy changes on the underlying XMI file. Perhaps I haven't found it in the sources and it's there but is there no abstraction like the UML manipulations for the umldi file, please?

Have a nice day

Guenther


Hi,

I would like to do the reverse of Acceleo work.

On one side there is Topcased sequence diagram editor.
On another I have a simulation of an SAM automaton from which I produce sequences. I would like to create a model from it. In order to benefit Topcased graphical features for sequence diagrams to debug faster a bugged trace. And then maybe compare required sequence with produced one.

My source is an ASCII file which depends from the simulating tools. I can't change its generation to directly produce uml file conforms to the metamodel. I need a kind of import, so I had a look at import.sildex but it's an ATL module which do a transformation between too metamodels.

Do you know any way to do this ?

Any help would be appreciated.
Simon



_______________________________________________
Topcased-users mailing list
[email protected]
http://lists.gforge.enseeiht.fr/mailman/listinfo/topcased-users

Reply via email to