Package | Description |
---|---|
psdi.workflow |
The Workflow package includes Mbos related to workflow.
|
psdi.workflow.diagram |
Modifier and Type | Method and Description |
---|---|
void |
Workflow.addRelationship(WorkflowRelationship relationship)
Adds a workflow relationship to the workflow
|
void |
Workflow.removeRelationship(WorkflowRelationship relationship)
Removes a workflow relationship from the workflow
|
Modifier and Type | Method and Description |
---|---|
WorkflowRelationship |
Line.getRelationship()
Returns the relationship
|
WorkflowRelationship |
WorkflowRelationshipExit.getWorkflowRelationship()
Returns the workflow relationship
|
WorkflowRelationship |
WorkflowRelationshipEnter.getWorkflowRelationship()
Returns the workflow relationship
|
Modifier and Type | Method and Description |
---|---|
void |
DiagramWorkflowNode.addIncomingRelationship(WorkflowRelationship rel)
Adds an incoming relationship to the node
|
void |
DiagramWorkflowNode.addOutgoingRelationship(WorkflowRelationship rel)
Adds an outgoing relationship to the node
|
void |
DiagramLineChannel.addWorkflowRelationship(WorkflowRelationship rel)
Adds a relationship to the channel
|
int |
DiagramLineChannel.getLocation(WorkflowRelationship rel)
Returns the location of the relationship that belongs to the channel.This
is y coordinate for horizontal channels and the x coordinate for vertical
channels
|
int |
DiagramWorkflowNode.getRelationshipLocation(WorkflowRelationship rel,
boolean incoming)
Gets the location of the relationship amoung the incoming/outgoing
relationships
|
void |
DiagramWorkflowNode.removeIncomingRelationship(WorkflowRelationship rel)
Removes an incoming relationship from the node
|
void |
DiagramWorkflowNode.removeOutgoingRelationship(WorkflowRelationship rel)
Removes an outgoing relationship from the node
|
Constructor and Description |
---|
Line(WorkflowRelationship rel,
int x1,
int y1,
int x2,
int y2)
Constructs a line
|
WorkflowRelationshipEnter(WorkflowRelationship workflowRelationship)
Constrsucts a WorkflowRelationshipEnter object.
|
WorkflowRelationshipExit(WorkflowRelationship workflowRelationship)
Constrsucts a WorkflowRelationshipExit object.
|