Package | Description |
---|---|
org.graphstream.graph.implementations |
Modifier and Type | Field and Description |
---|---|
protected AbstractEdge[] |
AdjacencyListGraph.edgeArray |
protected AbstractEdge[] |
AdjacencyListNode.edges |
(package private) AbstractEdge |
SingleNode.TwoEdges.in |
(package private) AbstractEdge |
SingleNode.TwoEdges.out |
Modifier and Type | Field and Description |
---|---|
private EdgeFactory<? extends AbstractEdge> |
AbstractGraph.edgeFactory |
protected java.util.HashMap<java.lang.String,AbstractEdge> |
AdjacencyListGraph.edgeMap |
protected java.util.HashMap<AbstractNode,java.util.List<AbstractEdge>> |
MultiNode.neighborMap |
Modifier and Type | Method and Description |
---|---|
protected boolean |
SingleNode.addEdgeCallback(AbstractEdge edge) |
protected boolean |
MultiNode.addEdgeCallback(AbstractEdge edge) |
protected boolean |
AdjacencyListNode.addEdgeCallback(AbstractEdge edge) |
protected void |
AdjacencyListGraph.addEdgeCallback(AbstractEdge edge) |
protected abstract boolean |
AbstractNode.addEdgeCallback(AbstractEdge edge)
This method is called automatically when an edge incident to this node is
created.
|
protected abstract void |
AbstractGraph.addEdgeCallback(AbstractEdge edge)
This method is automatically called when a new edge is created.
|
protected char |
AdjacencyListNode.edgeType(AbstractEdge e) |
protected <T extends Edge> |
AbstractGraph.removeEdge_(java.lang.String sourceId,
long timeId,
AbstractEdge edge,
java.lang.String edgeId,
boolean graphCallback,
boolean srcCallback,
boolean dstCallback) |
protected void |
AbstractGraph.removeEdge(AbstractEdge edge,
boolean graphCallback,
boolean sourceCallback,
boolean targetCallback)
This method is similar to
AbstractGraph.removeEdge(Edge) but allows to control
if different callbacks are called or not. |
protected void |
AdjacencyListNode.removeEdgeCallback(AbstractEdge edge) |
protected void |
AdjacencyListGraph.removeEdgeCallback(AbstractEdge edge) |
protected abstract void |
AbstractNode.removeEdgeCallback(AbstractEdge edge)
This method is called automatically before removing an edge incident to
this node.
|
protected abstract void |
AbstractGraph.removeEdgeCallback(AbstractEdge edge)
This method is automatically called when an edge is removed.
|