Package de.xima.fc.common.graphdot
Class NodeStatement
- java.lang.Object
-
- de.xima.fc.common.graphdot.NodeStatement
-
- All Implemented Interfaces:
IDirectedGraphDotStatement
,IGenericGraphDotStatement
,IGraphDotElement
,IGraphDotStatement
,IUndirectedGraphDotStatement
,Serializable
public final class NodeStatement extends Object implements IGenericGraphDotStatement
A graph dot element that represents a node statement."my-node" : "my-port" : ne [color = orange];
- Since:
- 8.2.0
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NodeStatement(NodeId nodeId, NodeAttributeList attributes)
Creates a new node statement.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
NodeAttributeList
getAttributeList()
NodeId
getNodeId()
int
hashCode()
String
toGraphDotString()
Creates a string in the graph dot language representing this element.String
toString()
void
write(GraphDotModelWriter writer)
Writes this element to the given writer, as a string in the graph dot language representing this element.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface de.xima.fc.common.graphdot.IGraphDotElement
toGraphDotString
-
-
-
-
Constructor Detail
-
NodeStatement
public NodeStatement(NodeId nodeId, NodeAttributeList attributes)
Creates a new node statement.- Parameters:
nodeId
- ID of the node.attributes
- Attributes of the node.
-
-
Method Detail
-
getAttributeList
public NodeAttributeList getAttributeList()
- Returns:
- Optional attributes, never
null
, but might be empty.
-
getNodeId
public NodeId getNodeId()
- Returns:
- Node ID, never
null
.
-
write
public void write(GraphDotModelWriter writer) throws IOException
Description copied from interface:IGraphDotElement
Writes this element to the given writer, as a string in the graph dot language representing this element.- Specified by:
write
in interfaceIGraphDotElement
- Parameters:
writer
- Writer to write to.- Throws:
IOException
- When the writer could not be written to.
-
toGraphDotString
public final String toGraphDotString()
Description copied from interface:IGraphDotElement
Creates a string in the graph dot language representing this element.- Specified by:
toGraphDotString
in interfaceIGraphDotElement
- Returns:
- The graph dot representation of this graph dot element.
-
-