Class GraphMLEdge
- java.lang.Object
-
- org.opennms.features.graphml.model.GraphMLElement
-
- org.opennms.features.graphml.model.GraphMLEdge
-
public class GraphMLEdge extends GraphMLElement
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.opennms.features.graphml.model.GraphMLElement
GraphMLElement.GraphMLElementVisitor<T>
-
-
Field Summary
-
Fields inherited from class org.opennms.features.graphml.model.GraphMLElement
ID
-
-
Constructor Summary
Constructors Constructor Description GraphMLEdge()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> T
accept(GraphMLElement.GraphMLElementVisitor<T> visitor)
boolean
equals(Object obj)
GraphMLNode
getSource()
GraphMLNode
getTarget()
int
hashCode()
void
setSource(GraphMLNode source)
void
setTarget(GraphMLNode target)
-
Methods inherited from class org.opennms.features.graphml.model.GraphMLElement
getId, getProperties, getProperty, getProperty, setId, setProperty, toString
-
-
-
-
Method Detail
-
getTarget
public GraphMLNode getTarget()
-
getSource
public GraphMLNode getSource()
-
setTarget
public void setTarget(GraphMLNode target)
-
setSource
public void setSource(GraphMLNode source)
-
accept
public <T> T accept(GraphMLElement.GraphMLElementVisitor<T> visitor)
- Specified by:
accept
in classGraphMLElement
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classGraphMLElement
-
equals
public boolean equals(Object obj)
- Overrides:
equals
in classGraphMLElement
-
-