Package | Description |
---|---|
com.orchestranetworks.addon.gram.graph |
Classes and interfaces for computing nodes and their relationships in a data value graph.
|
Modifier and Type | Method and Description |
---|---|
GraphNode |
GraphNodes.get(com.onwbp.adaptation.Adaptation record)
Gets a
GraphNode object in the current graph. |
GraphNode |
GraphNodes.get(GraphNode graphNode)
Gets a
GraphNode object in the current graph. |
Modifier and Type | Method and Description |
---|---|
Set<GraphNode> |
GraphNodes.getRootNodes() |
Set<GraphNode> |
GraphDataValueSelection.getSelectedNodes()
Returns a
Set of GraphNode that corresponds to the selected records. |
Iterator<Map.Entry<GraphNode,DisplaySpec>> |
GraphNodes.iterator()
Returns an iterator that corresponds to all nodes and their values.
|
Iterator<GraphNode> |
GraphNode.iteratorNodesFrom()
Returns an iterator that corresponds to all nodes that link to the current node.
|
Iterator<Map.Entry<GraphNode,DisplaySpec>> |
GraphNode.iteratorNodesTo()
Returns an iterator that corresponds to all nodes that are linked from the current node.
|
Iterator<GraphNode> |
GraphNodes.keyIterator()
Returns an iterator that corresponds to all nodes.
|
Set<GraphNode> |
GraphNode.keySetNodesTo()
Returns a
Set view of the all nodes that link to the current node. |
Modifier and Type | Method and Description |
---|---|
void |
GraphNodes.addNode(GraphNode nodeRecord)
Adds a specified
GraphNode to the graph without any value. |
void |
GraphNodes.addNode(GraphNode nodeRecord,
DisplaySpec customLayout)
Adds a specified
GraphNode to the graph with value of GraphCustomization. |
void |
GraphNode.addNodesFrom(GraphNode recordDescriptor)
Adds a specified
GraphNode to the list of nodes that are linked from the current node. |
void |
GraphNode.addNodesTo(GraphNode graphNode,
DisplaySpec label)
Adds a specified
GraphNode to the list of nodes that link to the current node. |
void |
GraphNodes.addRoot(GraphNode nodeRecord)
Adds a node to the current root node.
|
boolean |
GraphNodes.contains(GraphNode aNode)
Checks whether the current graph includes a node.
|
GraphNode |
GraphNodes.get(GraphNode graphNode)
Gets a
GraphNode object in the current graph. |
DisplaySpec |
GraphNodes.getDisplaySpec(GraphNode node)
Gets node label and layout settings.
|
DisplaySpec |
GraphNode.getLinkToSpec(GraphNode nodeRecord)
Gets the customization label and layout of the relationship from the current node to a specific node.
|
boolean |
GraphNode.nodesFromContains(GraphNode node)
Checks whether a node links to the current node.
|
boolean |
GraphNode.nodesToContains(GraphNode node)
Checks whether a node is linked from the current node.
|
Modifier and Type | Method and Description |
---|---|
void |
GraphNodes.addAll(Map<GraphNode,DisplaySpec> nodes)
Adds a collections of nodes to the current graph.
|
void |
GraphNode.addAllNodesFrom(Set<GraphNode> nodeRecords)
Adds a
Set of nodes to the list of nodes that are linked from the current node. |
void |
GraphNode.addAllNodesTo(Map<GraphNode,DisplaySpec> linksTo)
Adds a collection of nodes to the list of nodes that link to the current node.
|