Package jadex.gpmn.editor.model.gpmn
Interface IElement
-
- All Known Subinterfaces:
IActivationEdge,IActivationPlan,IBpmnPlan,IEdge,IGoal,INode,IPlan,IPlanEdge,IRefPlan
public interface IElementInterface for a model element.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IGpmnModelgetModel()Gets the model.java.lang.StringgetName()Gets the name.java.util.Set<IEdge>getSourceEdges()Gets the source edges.java.util.Set<IEdge>getTargetEdges()Gets the target edges.voidsetName(java.lang.String name)Sets the name.
-
-
-
Method Detail
-
getModel
IGpmnModel getModel()
Gets the model.- Returns:
- The model.
-
getName
java.lang.String getName()
Gets the name.- Returns:
- The name.
-
setName
void setName(java.lang.String name)
Sets the name.- Parameters:
name- The name.
-
getSourceEdges
java.util.Set<IEdge> getSourceEdges()
Gets the source edges.- Returns:
- The edges.
-
getTargetEdges
java.util.Set<IEdge> getTargetEdges()
Gets the target edges.- Parameters:
type- Type of the target edges.- Returns:
- The edges.
-
-