Package jadex.bpmn.editor.model.visual
Class VEdge
- java.lang.Object
-
- com.mxgraph.model.mxCell
-
- jadex.bpmn.editor.model.visual.VElement
-
- jadex.bpmn.editor.model.visual.VEdge
-
- All Implemented Interfaces:
com.mxgraph.model.mxICell
,java.io.Serializable
,java.lang.Cloneable
- Direct Known Subclasses:
VDataEdge
,VMessagingEdge
,VSequenceEdge
public class VEdge extends VElement
Visual representation of a BPMN edge.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class jadex.bpmn.editor.model.visual.VElement
bpmnelement, graph
-
-
Constructor Summary
Constructors Constructor Description VEdge(com.mxgraph.view.mxGraph graph, java.lang.String style)
Creates a new visual representation of an edge.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description com.mxgraph.model.mxICell
getEdgeParent()
Gets the authoritative edge parent.com.mxgraph.model.mxICell
getParent()
Gets the parent.java.lang.Object
getValue()
Gets the value.void
setSource(com.mxgraph.model.mxICell source)
void
setValue(java.lang.Object value)
Sets the value.-
Methods inherited from class jadex.bpmn.editor.model.visual.VElement
getBpmnElement, getGraph, setBpmnElement, setVisualParent
-
Methods inherited from class com.mxgraph.model.mxCell
clone, cloneValue, getAttribute, getAttribute, getChildAt, getChildCount, getEdgeAt, getEdgeCount, getEdgeIndex, getGeometry, getId, getIndex, getSource, getStyle, getTarget, getTerminal, insert, insert, insertEdge, isCollapsed, isConnectable, isEdge, isVertex, isVisible, remove, remove, removeEdge, removeFromParent, removeFromTerminal, setAttribute, setCollapsed, setConnectable, setEdge, setGeometry, setId, setParent, setStyle, setTarget, setTerminal, setVertex, setVisible
-
-
-
-
Method Detail
-
setSource
public void setSource(com.mxgraph.model.mxICell source)
- Overrides:
setSource
in classcom.mxgraph.model.mxCell
-
getParent
public com.mxgraph.model.mxICell getParent()
Gets the parent.- Specified by:
getParent
in interfacecom.mxgraph.model.mxICell
- Overrides:
getParent
in classcom.mxgraph.model.mxCell
-
getEdgeParent
public com.mxgraph.model.mxICell getEdgeParent()
Gets the authoritative edge parent.- Returns:
- The parent.
-
setValue
public void setValue(java.lang.Object value)
Sets the value.- Specified by:
setValue
in interfacecom.mxgraph.model.mxICell
- Overrides:
setValue
in classcom.mxgraph.model.mxCell
-
getValue
public java.lang.Object getValue()
Gets the value.- Specified by:
getValue
in interfacecom.mxgraph.model.mxICell
- Overrides:
getValue
in classcom.mxgraph.model.mxCell
-
-