|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of Graph in org.graphstream.graph |
---|
Methods in org.graphstream.graph that return Graph | |
---|---|
Graph |
Node.getGraph()
Parent graph. |
Graph |
GraphFactory.newInstance(String id,
String graphClass)
Instantiate a new graph from the given class name. |
Methods in org.graphstream.graph with parameters of type Graph | |
---|---|
T |
NodeFactory.newInstance(String id,
Graph graph)
Create a new instance of node. |
Uses of Graph in org.graphstream.graph.implementations |
---|
Classes in org.graphstream.graph.implementations that implement Graph | |
---|---|
class |
AbstractGraph
This class provides a basic implementation of Graph interface, to minimize the effort
required to implement this interface. |
class |
AdjacencyListGraph
A lightweight graph class intended to allow the construction of big graphs (millions of elements). |
class |
DefaultGraph
Default implementation of graph. |
class |
MultiGraph
A graph implementation that supports multiple edges between two nodes. |
class |
SingleGraph
An implementation of graph that supports only one edge between two nodes. |
Methods in org.graphstream.graph.implementations that return Graph | |
---|---|
Graph |
AbstractNode.getGraph()
This implementation returns AbstractNode.graph . |
static Graph |
Graphs.merge(Graph... graphs)
Merge several graphs in one. |
static Graph |
Graphs.synchronizedGraph(Graph g)
Synchronizes a graph. |
static Graph |
Graphs.unmutableGraph(Graph g)
|
Methods in org.graphstream.graph.implementations with parameters of type Graph | |
---|---|
static Graph |
Graphs.merge(Graph... graphs)
Merge several graphs in one. |
static void |
Graphs.mergeIn(Graph result,
Graph... graphs)
Merge several graphs in one. |
static void |
Graphs.mergeIn(Graph result,
Graph... graphs)
Merge several graphs in one. |
static Graph |
Graphs.synchronizedGraph(Graph g)
Synchronizes a graph. |
static Graph |
Graphs.unmutableGraph(Graph g)
|
Uses of Graph in org.graphstream.stream |
---|
Methods in org.graphstream.stream with parameters of type Graph | |
---|---|
void |
GraphReplay.replay(Graph graph)
Echo each element and attribute of the graph to the registered sinks. |
Uses of Graph in org.graphstream.stream.file |
---|
Methods in org.graphstream.stream.file with parameters of type Graph | |
---|---|
void |
FileSinkSWF.writeAll(Graph graph,
OutputStream stream)
|
void |
FileSinkSVG2.writeAll(Graph graph,
OutputStream stream)
|
void |
FileSinkImages.writeAll(Graph g,
OutputStream stream)
|
void |
FileSink.writeAll(Graph graph,
OutputStream stream)
Write the current graph state in one big non-interruptible operation. |
void |
FileSinkBase.writeAll(Graph graph,
OutputStream stream)
|
void |
FileSinkSWF.writeAll(Graph graph,
String fileName)
|
void |
FileSinkSVG2.writeAll(Graph graph,
String fileName)
|
void |
FileSinkImages.writeAll(Graph g,
String filename)
|
void |
FileSink.writeAll(Graph graph,
String fileName)
Write the current graph state in one big non-interruptible operation. |
void |
FileSinkBase.writeAll(Graph graph,
String fileName)
|
void |
FileSinkSWF.writeAll(Graph graph,
Writer writer)
|
void |
FileSinkSVG2.writeAll(Graph g,
Writer w)
|
void |
FileSinkImages.writeAll(Graph g,
Writer writer)
|
void |
FileSink.writeAll(Graph graph,
Writer writer)
Write the current graph state in one big non-interruptible operation. |
void |
FileSinkBase.writeAll(Graph graph,
Writer writer)
|
Uses of Graph in org.graphstream.stream.thread |
---|
Constructors in org.graphstream.stream.thread with parameters of type Graph | |
---|---|
ThreadProxyPipe(Graph inputGraph)
Listen at an input graph in a given thread and redirect all events to GraphListeners that may be in another thread. |
|
ThreadProxyPipe(Graph inputGraph,
boolean replayGraph)
Like ThreadProxyPipe.ThreadProxyPipe(Graph) but allow to avoid replaying the
graph. |
|
ThreadProxyPipe(Graph inputGraph,
Sink firstListener,
boolean replayGraph)
Like ThreadProxyPipe.ThreadProxyPipe(Graph,boolean) but allows to pass an
initial listener, therefore specifying the input and output at once. |
|
ThreadProxyPipe(Graph inputGraph,
Sink firstListener,
boolean replayGraph,
org.miv.mbox.MBox sharedMBox)
Like ThreadProxyPipe.ThreadProxyPipe(Graph,Sink,boolean) , but allows to share
the message box with another message processor. |
Uses of Graph in org.graphstream.ui.graphicGraph |
---|
Classes in org.graphstream.ui.graphicGraph that implement Graph | |
---|---|
class |
GraphicGraph
Graph representation used in display classes. |
Methods in org.graphstream.ui.graphicGraph that return Graph | |
---|---|
Graph |
GraphicNode.getGraph()
|
Graph |
StyleGroupSet.getGraph(String id)
Get a graph element knowing its identifier. |
Methods in org.graphstream.ui.graphicGraph that return types with arguments of type Graph | |
---|---|
Iterator<? extends Graph> |
StyleGroupSet.getGraphIterator()
Iterator on the set of graphs. |
Iterable<? extends Graph> |
StyleGroupSet.graphs()
Iterable set of graphs. |
Methods in org.graphstream.ui.graphicGraph with parameters of type Graph | |
---|---|
static double |
GraphPosLengthUtils.edgeLength(Graph graph,
String id)
Compute the edge length of the given edge according to its two nodes positions. |
StyleGroup |
StyleGroupSet.getStyleFor(Graph graph)
Get the style of a given graph. |
static Point3 |
GraphPosLengthUtils.nodePointPosition(Graph graph,
String id)
Retrieve a node position from its attributes ("x", "y", "z", or "xy", or "xyz"). |
static double[] |
GraphPosLengthUtils.nodePosition(Graph graph,
String id)
Retrieve a node position from its attributes ("x", "y", "z", or "xy", or "xyz"). |
static void |
GraphPosLengthUtils.nodePosition(Graph graph,
String id,
double[] xyz)
Like GraphPosLengthUtils.nodePosition(Graph,String) , but instead of returning a
newly allocated array, fill up the array given as parameter. |
static void |
GraphPosLengthUtils.nodePosition(Graph graph,
String id,
Point3 pos)
Like GraphPosLengthUtils.nodePointPosition(Graph,String) , but instead of returning a
newly allocated array, fill up the array given as parameter. |
void |
GraphicNode.setGraph(Graph graph)
|
Uses of Graph in org.graphstream.ui.layout |
---|
Constructors in org.graphstream.ui.layout with parameters of type Graph | |
---|---|
LayoutRunner(Graph graph,
Layout layout,
boolean start,
boolean replay)
New layout runner that listen at the given graph and compute a layout on its graph structure in a distinct thread. |
Uses of Graph in org.graphstream.ui.spriteManager |
---|
Constructors in org.graphstream.ui.spriteManager with parameters of type Graph | |
---|---|
SpriteManager(Graph graph)
Create a new manager for sprite and bind it to the given graph. |
Uses of Graph in org.graphstream.ui.swingViewer |
---|
Constructors in org.graphstream.ui.swingViewer with parameters of type Graph | |
---|---|
Viewer(Graph graph,
Viewer.ThreadingModel threadingModel)
New viewer on an existing graph. |
Uses of Graph in org.graphstream.util |
---|
Constructors in org.graphstream.util with parameters of type Graph | |
---|---|
FilteredEdgeIterator(Graph g,
Filter<Edge> filter)
|
|
FilteredNodeIterator(Graph g,
Filter<Node> filter)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |