Class Lane
- java.lang.Object
-
- org.camunda.bpm.engine.impl.pvm.process.Lane
-
- All Implemented Interfaces:
HasDIBounds
public class Lane extends Object implements HasDIBounds
A single lane in a BPMN 2.0 LaneSet, currently only used internally for rendering the diagram. The PVM doesn't actually use the laneSets/lanes.- Author:
- Frederik Heremans
-
-
Constructor Summary
Constructors Constructor Description Lane()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>
getFlowNodeIds()
int
getHeight()
String
getId()
String
getName()
int
getWidth()
int
getX()
int
getY()
void
setHeight(int height)
void
setId(String id)
void
setName(String name)
void
setWidth(int width)
void
setX(int x)
void
setY(int y)
-
-
-
Method Detail
-
setId
public void setId(String id)
-
getId
public String getId()
-
getName
public String getName()
-
setName
public void setName(String name)
-
getX
public int getX()
- Specified by:
getX
in interfaceHasDIBounds
-
setX
public void setX(int x)
- Specified by:
setX
in interfaceHasDIBounds
-
getY
public int getY()
- Specified by:
getY
in interfaceHasDIBounds
-
setY
public void setY(int y)
- Specified by:
setY
in interfaceHasDIBounds
-
getWidth
public int getWidth()
- Specified by:
getWidth
in interfaceHasDIBounds
-
setWidth
public void setWidth(int width)
- Specified by:
setWidth
in interfaceHasDIBounds
-
getHeight
public int getHeight()
- Specified by:
getHeight
in interfaceHasDIBounds
-
setHeight
public void setHeight(int height)
- Specified by:
setHeight
in interfaceHasDIBounds
-
-