Interface IvmlGraphMapper.IvmlGraph
-
- All Superinterfaces:
IvmlGraphMapper.IvmlGraphElement
- All Known Implementing Classes:
ConfigurationAas.IipGraph,DefaultGraph
- Enclosing interface:
- IvmlGraphMapper
public static interface IvmlGraphMapper.IvmlGraph extends IvmlGraphMapper.IvmlGraphElement
Represents an IVML graph.- Author:
- Holger Eichelberger, SSE
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddNode(IvmlGraphMapper.IvmlGraphNode node)Adds a node to this graph.intgetNodeCount()Returns the number of nodes of this graph.java.lang.Iterable<? extends IvmlGraphMapper.IvmlGraphNode>nodes()Returns the nodes in the graph.-
Methods inherited from interface de.iip_ecosphere.platform.configuration.ivml.IvmlGraphMapper.IvmlGraphElement
getName, getVariable, setName
-
-
-
-
Method Detail
-
addNode
void addNode(IvmlGraphMapper.IvmlGraphNode node)
Adds a node to this graph.- Parameters:
node- the node
-
nodes
java.lang.Iterable<? extends IvmlGraphMapper.IvmlGraphNode> nodes()
Returns the nodes in the graph.- Returns:
- the nodes
-
getNodeCount
int getNodeCount()
Returns the number of nodes of this graph.- Returns:
- the number of nodes
-
-