| Package | Description |
|---|---|
| eu.mihosoft.vrl.workflow | |
| eu.mihosoft.vrl.workflow.incubating | |
| eu.mihosoft.vrl.workflow.skin |
| Modifier and Type | Method and Description |
|---|---|
Connection |
Connections.add(Connector s,
Connector r)
Adds the connection defined by the specified connectors.
|
Connection |
Connections.add(String id,
Connector s,
Connector r,
VisualizationRequest vReq)
Adds the connection defined by the specified connectors.
|
Connection |
Connections.get(String id,
Connector s,
Connector r)
Returns the specified connection.
|
Connection |
ConnectionEvent.getConnection() |
Connection |
ConnectionResult.getConnection()
Get the connection object for the connection being attempted
|
| Modifier and Type | Method and Description |
|---|---|
Collection<Connection> |
Connections.getAll(Connector s,
Connector r)
Returns all connections betwenn the specified connectors.
|
Collection<Connection> |
Connections.getAllWith(Connector c)
Returns all connections that are connected to the specified connector.
|
Collection<Connection> |
Connections.getAllWithNode(VNode n)
Returns all connections that are connected to the specified node.
|
Class<? extends Connection> |
Connections.getConnectionClass()
Returns the connection implementation class.
|
ObservableList<Connection> |
Connections.getConnections()
Returns the connections defined by this collection.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Connections.add(Connection c)
Adds a connection to this collection.
|
ConnectionSkin<?> |
FlowNodeSkinLookupImpl.getById(SkinFactory skinFactory,
Connection c) |
VNode |
FlowModelImpl.getReceiver(Connection c) |
VNode |
VFlow.getReceiver(Connection c)
Returns the receiver of the specified connection.
|
VNode |
FlowModelImpl.getSender(Connection c) |
VNode |
VFlow.getSender(Connection c)
Returns the sender of the specified connection.
|
void |
Connections.remove(Connection c)
Removes the specified connection from this collection
|
| Modifier and Type | Method and Description |
|---|---|
void |
Connections.setConnectionClass(Class<? extends Connection> cls)
Defines the connection implementation class that shall be used.
|
| Constructor and Description |
|---|
ConnectionEvent(EventType<? extends Event> et,
Connector sConnector,
Connector rConnector,
Connection connection) |
| Modifier and Type | Method and Description |
|---|---|
edu.uci.ics.jung.graph.DirectedGraph<VNode,Connection> |
LayoutGeneratorSmart.getModelGraph()
Returns the model graph to be laid out.
|
| Modifier and Type | Method and Description |
|---|---|
void |
LayoutGeneratorSmart.setModelGraph(edu.uci.ics.jung.graph.DirectedGraph<VNode,Connection> pjgraph)
Sets the model graph to be laid out.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
ConnectionSkin<T extends Connection>
Connection skin.
|
| Modifier and Type | Method and Description |
|---|---|
ConnectionSkin |
ConnectionSkinFactory.createSkin(Connection c,
VFlow flow,
String type)
Creates a skin for the specified connection.
|
ConnectionSkin<?> |
FlowNodeSkinLookup.getById(SkinFactory skinFactory,
Connection c)
Returns the skin of the specified connection.
|