[ATL] Is it possible to two classes (input) into one class (output) in a rule [message #537796] |
Thu, 03 June 2010 16:28  |
Eclipse User |
|
|
|
Hi all,
I am writing a lot of issues right now, because I am a newbie and I have to learn a lot. 
My problem is, that you can see that I have to rules posted below, both of them have the same output class, but different input classes. The output model has then two lines which lool like:
<SequenceFlow id="1" name="Gugu2"/>
<SequenceFlow sourceRef="1" targetRef="2"/>
instead of:
<SequenceFlow id="1" name="Gugu2" sourceRef="1" targetRef="2"/>
How can I make it sure that everthing is written in one line?
Thanks a lot for your help and effort!!!
rule Arc {
from
e : EPK!Arc
to
b : BPMN!SequenceFlow
(
id <- e.id,
name <- e.name
)
}
rule Flow {
from
e : EPK!ControlFlow
to
b : BPMN!SequenceFlow
(
sourceRef <- e.source,
targetRef <- e.target
)
}
|
|
|
|
Powered by
FUDForum. Page generated in 0.03428 seconds