Package ghidra.service.graph
Class AttributedEdge
- java.lang.Object
-
- ghidra.service.graph.Attributed
-
- ghidra.service.graph.AttributedEdge
-
public class AttributedEdge extends Attributed
Generic directed graph edge implementation
-
-
Constructor Summary
Constructors Constructor Description AttributedEdge(java.lang.String id)
Constructs a new GhidraEdge
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.lang.String
getId()
Returns the id for this edgeint
hashCode()
java.lang.String
toString()
-
Methods inherited from class ghidra.service.graph.Attributed
clear, entrySet, getAttribute, getAttributeMap, getDescription, getHtmlString, hasAttribute, isEmpty, keys, putAttributes, removeAttribute, setAttribute, setDescription, size, values
-
-
-
-
Method Detail
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
getId
public java.lang.String getId()
Returns the id for this edge- Returns:
- the id for this edge
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
-