Package org.jgrapht.alg
Class BlockCutpointGraph.BCGEdge
- java.lang.Object
-
- org.jgrapht.graph.IntrusiveEdge
-
- org.jgrapht.graph.DefaultEdge
-
- org.jgrapht.alg.BlockCutpointGraph.BCGEdge
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Cloneable
- Enclosing class:
- BlockCutpointGraph<V,E>
private class BlockCutpointGraph.BCGEdge extends DefaultEdge
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUIDprivate Vsourceprivate Vtarget
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description VgetSource()Retrieves the source of this edge.VgetTarget()Retrieves the target of this edge.-
Methods inherited from class org.jgrapht.graph.DefaultEdge
toString
-
Methods inherited from class org.jgrapht.graph.IntrusiveEdge
clone
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
source
private V source
-
target
private V target
-
-
Method Detail
-
getSource
public V getSource()
Description copied from class:DefaultEdgeRetrieves the source of this edge. This is protected, for use by subclasses only (e.g. for implementing toString).- Overrides:
getSourcein classDefaultEdge- Returns:
- source of this edge
-
getTarget
public V getTarget()
Description copied from class:DefaultEdgeRetrieves the target of this edge. This is protected, for use by subclasses only (e.g. for implementing toString).- Overrides:
getTargetin classDefaultEdge- Returns:
- target of this edge
-
-