net.sf.nakeduml.metamodel.actions.INakedCreateObjectAction 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.actions;
import net.sf.nakeduml.metamodel.activities.INakedAction;
import net.sf.nakeduml.metamodel.activities.INakedOutputPin;
import net.sf.nakeduml.metamodel.core.INakedClassifier;
public interface INakedCreateObjectAction extends INakedAction {
INakedClassifier getClassifier();
INakedOutputPin getResult();
void setClassifier(INakedClassifier c);
void setResult(INakedOutputPin r);
}