Doing Model-to-Model Transformations in ATL, How do I check if an attribute is of a certain kind, e.g String or multiValued? Because I need to decide what type of panel to use in the Java-Swing GUI as output.
rule Model2Gui{
from model : Model!EClass
to gui : GUI!Page (
label <- model.name,
elements <- Set {elements}
),
elements : GUI!DataPanel (
label <- model.name,
objectType <- model.name,
objectFeatures <- model.eStructuralFeatures
)
}
rule referenceAttribute2combo{
from model : Model!EClass(
model.type.oclIsKindOf(Model!DataType)
and not model.multiValued
)
to gui : GUI!Page (
)
} /* I'm not exactly sure if I'm doing this last rule right, any corrections will be appreciated. Thanks. */