Package jadex.bpmn.editor.model.visual
Class VNamedNode
- java.lang.Object
-
- com.mxgraph.model.mxCell
-
- jadex.bpmn.editor.model.visual.VElement
-
- jadex.bpmn.editor.model.visual.VNode
-
- jadex.bpmn.editor.model.visual.VNamedNode
-
- All Implemented Interfaces:
com.mxgraph.model.mxICell
,java.io.Serializable
,java.lang.Cloneable
- Direct Known Subclasses:
VActivity
,VInParameter
,VLane
,VOutParameter
,VPool
public class VNamedNode extends VNode
This class represents a named visual node.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class jadex.bpmn.editor.model.visual.VElement
bpmnelement, graph
-
-
Constructor Summary
Constructors Constructor Description VNamedNode(com.mxgraph.view.mxGraph graph, java.lang.String style)
Creates a new visual representation of a named node.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Object
getValue()
Gets the value.void
setBpmnElement(MIdElement bpmnelement)
Sets the BPMN element.void
setValue(java.lang.Object value)
Sets the value.-
Methods inherited from class jadex.bpmn.editor.model.visual.VElement
getBpmnElement, getGraph, setVisualParent
-
Methods inherited from class com.mxgraph.model.mxCell
clone, cloneValue, getAttribute, getAttribute, getChildAt, getChildCount, getEdgeAt, getEdgeCount, getEdgeIndex, getGeometry, getId, getIndex, getParent, getSource, getStyle, getTarget, getTerminal, insert, insert, insertEdge, isCollapsed, isConnectable, isEdge, isVertex, isVisible, remove, remove, removeEdge, removeFromParent, removeFromTerminal, setAttribute, setCollapsed, setConnectable, setEdge, setGeometry, setId, setParent, setSource, setStyle, setTarget, setTerminal, setVertex, setVisible
-
-
-
-
Method Detail
-
getValue
public java.lang.Object getValue()
Gets the value.- Specified by:
getValue
in interfacecom.mxgraph.model.mxICell
- Overrides:
getValue
in classcom.mxgraph.model.mxCell
- Returns:
- The value.
-
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
- Parameters:
value
- The value.
-
setBpmnElement
public void setBpmnElement(MIdElement bpmnelement)
Sets the BPMN element.- Overrides:
setBpmnElement
in classVElement
- Parameters:
bpmnelement
- The BPMN element.
-
-