Modifier and Type | Interface and Description |
---|---|
interface |
Graph
An Interface that advises general purpose methods for handling graphs.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Iterable<AttributeSink> |
Graph.attributeSinks()
Returns an "iterable" of
AttributeSink objects registered to this
graph. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractGraph
This class provides a basic implementation of
Graph interface, to minimize the effort
required to implement this interface. |
(package private) class |
AbstractGraph.GraphListeners |
class |
AdjacencyListGraph
A lightweight graph class intended to allow the construction of big graphs
(millions of elements).
|
class |
DefaultGraph
Default implementation of graph.
|
(package private) static class |
Graphs.SynchronizedGraph |
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.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Iterable<AttributeSink> |
Graphs.SynchronizedGraph.attributeSinks() |
java.lang.Iterable<AttributeSink> |
AbstractGraph.attributeSinks() |
Modifier and Type | Method and Description |
---|---|
void |
Graphs.SynchronizedGraph.addAttributeSink(AttributeSink sink) |
void |
AbstractGraph.addAttributeSink(AttributeSink sink) |
void |
Graphs.SynchronizedGraph.removeAttributeSink(AttributeSink sink) |
void |
AbstractGraph.removeAttributeSink(AttributeSink sink) |
Modifier and Type | Interface and Description |
---|---|
interface |
Pipe
Sink and source of graph events.
|
interface |
ProxyPipe
Proxy pipe.
|
interface |
Sink
Sink of graph events.
|
Modifier and Type | Class and Description |
---|---|
class |
AnnotatedSink
A sink easily allowing a bind between attribute modifications and method
calls.
|
class |
AttributePipe
Allows to filter the attribute event stream.
|
class |
PipeAdapter
Adapter for the filter interface.
|
class |
PipeBase
A base pipe that merely let all events pass.
|
class |
SinkAdapter
Adapter for the
Sink interface. |
class |
Timeline |
Modifier and Type | Field and Description |
---|---|
protected java.util.ArrayList<AttributeSink> |
SourceBase.attrSinks
Set of graph attributes sinks.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Iterable<AttributeSink> |
SourceBase.attributeSinks() |
Modifier and Type | Method and Description |
---|---|
void |
SourceBase.addAttributeSink(AttributeSink sink) |
void |
SourceAdapter.addAttributeSink(AttributeSink sink) |
void |
Source.addAttributeSink(AttributeSink sink)
Add a sink for attribute events only.
|
void |
PipeAdapter.addAttributeSink(AttributeSink listener) |
void |
SourceBase.removeAttributeSink(AttributeSink sink) |
void |
SourceAdapter.removeAttributeSink(AttributeSink sink) |
void |
Source.removeAttributeSink(AttributeSink sink)
Remove an attribute sink.
|
void |
PipeAdapter.removeAttributeSink(AttributeSink listener) |
Modifier and Type | Interface and Description |
---|---|
interface |
FileSink
Output a graph or graph events to a file.
|
Modifier and Type | Class and Description |
---|---|
class |
FileSinkBase
Base implementation for graph output to files.
|
class |
FileSinkDGS
File output for the DGS (Dynamic Graph Stream) file format.
|
class |
FileSinkDOT
Graph writer for the GraphViz DOT format.
|
class |
FileSinkDynamicGML
Transform the input events into a GML graph.
|
class |
FileSinkGEXF |
class |
FileSinkGML
Transform the input events into a GML graph.
|
class |
FileSinkGraphML |
class |
FileSinkSWF
This class intends to output a dynamic graph into a Flash animation.
|
Modifier and Type | Class and Description |
---|---|
class |
NetStreamSender
This class implements a sender according to specifications the NetStream
protocol.
|
Modifier and Type | Class and Description |
---|---|
class |
RMISink |
Modifier and Type | Field and Description |
---|---|
(package private) java.util.concurrent.ConcurrentLinkedQueue<AttributeSink> |
RMISource.attributesListeners |
Modifier and Type | Method and Description |
---|---|
void |
RMISource.addAttributeSink(AttributeSink listener) |
void |
RMISource.removeAttributeSink(AttributeSink listener) |
Modifier and Type | Class and Description |
---|---|
class |
ThreadProxyPipe
Filter that allows to pass graph events between two threads without explicit
synchronization.
|
class |
ThreadProxyPipeOld
Deprecated.
This is the old version of
ThreadProxyPipe . |
Modifier and Type | Class and Description |
---|---|
class |
StepCounter
Count the step of a stream.
|
class |
VerboseSink
A sink that can be used to display event in a PrintStream like System.out.
|