net.sf.nakeduml.obsolete.uimetamodel.UIMOperationUserInteraction 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.obsolete.uimetamodel;
import java.util.ArrayList;
import java.util.List;
public class UIMOperationUserInteraction extends UIMEntityUserInteraction {
/**
*
*/
private static final long serialVersionUID = 2469246406567155215L;
private UIMOperation operation;
private List parameterParticipations = new ArrayList();
public UIMOperation getOperation() {
return this.operation;
}
public List getParameterParticipations() {
return this.parameterParticipations;
}
}