Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Modeling » UML2 » AddVariableValueAction doubled in UML editor
AddVariableValueAction doubled in UML editor [message #475160] Wed, 22 August 2007 09:14 Go to next message
Krzysztof Kaczmarski is currently offline Krzysztof KaczmarskiFriend
Messages: 88
Registered: July 2009
Member
Hi All,

when I modify UMLArticle's code to create model like this:

Model model = UMLFactory.eINSTANCE.createModel();
model.setName("MyModel");

org.eclipse.uml2.uml.Class clazz = model.createOwnedClass("MyClass",
false);
Activity activity = (Activity) clazz.createOwnedBehavior(
"MyActivity", UMLPackage.Literals.ACTIVITY );

SequenceNode sequence = (SequenceNode) activity.createNode(
"MySequence", UMLPackage.Literals.SEQUENCE_NODE);

AddVariableValueAction addValue = (AddVariableValueAction)
sequence.createNode( "MyAction",
UMLPackage.Literals.ADD_VARIABLE_VALUE_ACTION);

so single AddVariableValueAction is created and I serialize it to uml
file and then open it in UML Editor I see the action doubled.
I checked that in the file it is serialized only once so it is
probably a problem of UML Editor.
Should I post it as a bug or maybe it is for some reason normal?

Regards,
Krzysztof Kaczmarski
Re: AddVariableValueAction doubled in UML editor [message #475194 is a reply to message #475160] Wed, 22 August 2007 13:46 Go to previous message
james bruck is currently offline james bruckFriend
Messages: 1724
Registered: July 2009
Senior Member
Hi Krzysztof ,

You're right!
I can reproduce that simply by using the editor. Please log a bug and it
will be looked into.

( There might be some issue with the ExecutableNode and Node collections )

- James.


"Krzysztof Kaczmarski" <krzysztof_kaczmarski@o2.pl> wrote in message
news:fagup6$d5n$1@build.eclipse.org...
> Hi All,
>
> when I modify UMLArticle's code to create model like this:
>
> Model model = UMLFactory.eINSTANCE.createModel();
> model.setName("MyModel");
>
> org.eclipse.uml2.uml.Class clazz = model.createOwnedClass("MyClass",
> false);
> Activity activity = (Activity) clazz.createOwnedBehavior(
> "MyActivity", UMLPackage.Literals.ACTIVITY );
>
> SequenceNode sequence = (SequenceNode) activity.createNode(
> "MySequence", UMLPackage.Literals.SEQUENCE_NODE);
>
> AddVariableValueAction addValue = (AddVariableValueAction)
> sequence.createNode( "MyAction",
> UMLPackage.Literals.ADD_VARIABLE_VALUE_ACTION);
>
> so single AddVariableValueAction is created and I serialize it to uml
> file and then open it in UML Editor I see the action doubled.
> I checked that in the file it is serialized only once so it is
> probably a problem of UML Editor.
> Should I post it as a bug or maybe it is for some reason normal?
>
> Regards,
> Krzysztof Kaczmarski
Re: AddVariableValueAction doubled in UML editor [message #624468 is a reply to message #475160] Wed, 22 August 2007 13:46 Go to previous message
james bruck is currently offline james bruckFriend
Messages: 1724
Registered: July 2009
Senior Member
Hi Krzysztof ,

You're right!
I can reproduce that simply by using the editor. Please log a bug and it
will be looked into.

( There might be some issue with the ExecutableNode and Node collections )

- James.


"Krzysztof Kaczmarski" <krzysztof_kaczmarski@o2.pl> wrote in message
news:fagup6$d5n$1@build.eclipse.org...
> Hi All,
>
> when I modify UMLArticle's code to create model like this:
>
> Model model = UMLFactory.eINSTANCE.createModel();
> model.setName("MyModel");
>
> org.eclipse.uml2.uml.Class clazz = model.createOwnedClass("MyClass",
> false);
> Activity activity = (Activity) clazz.createOwnedBehavior(
> "MyActivity", UMLPackage.Literals.ACTIVITY );
>
> SequenceNode sequence = (SequenceNode) activity.createNode(
> "MySequence", UMLPackage.Literals.SEQUENCE_NODE);
>
> AddVariableValueAction addValue = (AddVariableValueAction)
> sequence.createNode( "MyAction",
> UMLPackage.Literals.ADD_VARIABLE_VALUE_ACTION);
>
> so single AddVariableValueAction is created and I serialize it to uml
> file and then open it in UML Editor I see the action doubled.
> I checked that in the file it is serialized only once so it is
> probably a problem of UML Editor.
> Should I post it as a bug or maybe it is for some reason normal?
>
> Regards,
> Krzysztof Kaczmarski
Previous Topic:java API which converts Ecore object model to UML model.
Next Topic:UML and multiple/diamond inheritance
Goto Forum:
  


Current Time: Thu Mar 28 07:59:19 GMT 2024

Powered by FUDForum. Page generated in 0.03021 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top