net.sf.nakeduml.metamodel.activities.INakedObjectFlow Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of metamodel Show documentation
Show all versions of metamodel Show documentation
A uml code generator and execution engine
The newest version!
package net.sf.nakeduml.metamodel.activities;
import net.sf.nakeduml.metamodel.commonbehaviors.INakedBehavior;
public interface INakedObjectFlow extends INakedActivityEdge {
INakedBehavior getTransformation();
void setTransformation(INakedBehavior b);
void setSelection(INakedBehavior b);
INakedBehavior getSelection();
}