| [news.eclipse.modeling.m2m] [ATL] Re: What is the meaning of "mapsTo"? |
Hi Dennis,
in some of your transformations, I see the keyword "mapsTo":
rule DurationInterval { from s : UML2!uml::DurationInterval (thisModule.inElements->includes(s)) to t : UML2!uml::DurationInterval mapsTo s ( ... ) }
What does this keyword do?
Cheers Matthias
Short answer: The keyword currently does nothing. You may ignore it.
rule A {
from s : UML!Class
to t : RDB!Table (
columns <- s.ownedAttribute)
}rule B {
from s : UML!Attribute
to t : RDB!Column (
name <- s.name),
index : RDB!Index (
name <- s.name)
}