Package jadex.gpmn.editor.model.gpmn
Interface IEdge
-
- All Superinterfaces:
IElement
- All Known Subinterfaces:
IActivationEdge,IPlanEdge
public interface IEdge extends IElement
An edge in the model.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IElementgetSource()Gets the source.IElementgetTarget()Gets the target.voidsetSource(IElement source)Sets the source.voidsetTarget(IElement target)Sets the target.-
Methods inherited from interface jadex.gpmn.editor.model.gpmn.IElement
getModel, getName, getSourceEdges, getTargetEdges, setName
-
-
-
-
Method Detail
-
getSource
IElement getSource()
Gets the source.- Returns:
- The source
-
setSource
void setSource(IElement source)
Sets the source.- Parameters:
source- The source to set
-
getTarget
IElement getTarget()
Gets the target.- Returns:
- The target
-
setTarget
void setTarget(IElement target)
Sets the target.- Parameters:
target- The target to set
-
-