Uses of Interface
org.graphstream.stream.ElementSink

Packages that use ElementSink
org.graphstream.graph   
org.graphstream.graph.implementations   
org.graphstream.stream   
org.graphstream.stream.file   
org.graphstream.stream.netstream   
org.graphstream.stream.rmi   
org.graphstream.stream.thread   
org.graphstream.ui.graphicGraph   
org.graphstream.ui.layout   
org.graphstream.ui.layout.springbox   
org.graphstream.ui.layout.springbox.implementations   
org.graphstream.ui.swingViewer   
org.graphstream.util   
 

Uses of ElementSink in org.graphstream.graph
 

Subinterfaces of ElementSink in org.graphstream.graph
 interface Graph
          An Interface that advises general purpose methods for handling graphs.
 

Methods in org.graphstream.graph that return types with arguments of type ElementSink
 Iterable<ElementSink> Graph.elementSinks()
          Returns an "iterable" of ElementSink objects registered to this graph.
 

Uses of ElementSink in org.graphstream.graph.implementations
 

Classes in org.graphstream.graph.implementations that implement ElementSink
 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 types with arguments of type ElementSink
 Iterable<ElementSink> AbstractGraph.elementSinks()
           
 

Methods in org.graphstream.graph.implementations with parameters of type ElementSink
 void AbstractGraph.addElementSink(ElementSink sink)
           
 void AbstractGraph.removeElementSink(ElementSink sink)
           
 

Uses of ElementSink in org.graphstream.stream
 

Subinterfaces of ElementSink in org.graphstream.stream
 interface Pipe
          Sink and source of graph events.
 interface ProxyPipe
          Proxy pipe.
 interface Sink
          Sink of graph events.
 

Classes in org.graphstream.stream that implement ElementSink
 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
           
 

Methods in org.graphstream.stream that return types with arguments of type ElementSink
 Iterable<ElementSink> SourceBase.elementSinks()
           
 

Methods in org.graphstream.stream with parameters of type ElementSink
 void SourceBase.addElementSink(ElementSink sink)
           
 void Source.addElementSink(ElementSink sink)
          Add a sink for elements events only.
 void SourceAdapter.addElementSink(ElementSink sink)
           
 void PipeAdapter.addElementSink(ElementSink listener)
           
 void SourceBase.removeElementSink(ElementSink sink)
           
 void Source.removeElementSink(ElementSink sink)
          Remove an element sink.
 void SourceAdapter.removeElementSink(ElementSink sink)
           
 void PipeAdapter.removeElementSink(ElementSink listener)
           
 

Uses of ElementSink in org.graphstream.stream.file
 

Subinterfaces of ElementSink in org.graphstream.stream.file
 interface FileSink
          Output a graph or graph events to a file.
 

Classes in org.graphstream.stream.file that implement ElementSink
 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 FileSinkImages
          Output graph in image files.
 class FileSinkSVG
          Transforms a graph into a SVG description.
 class FileSinkSVG2
           
 class FileSinkSWF
          This class intends to output a dynamic graph into a Flash animation.
 class FileSinkTikZ
          An export of a graph to PGF/TikZ format.
 

Uses of ElementSink in org.graphstream.stream.netstream
 

Classes in org.graphstream.stream.netstream that implement ElementSink
 class NetStreamSender
           This class implements a sender according to specifications the NetStream protocol.
 

Uses of ElementSink in org.graphstream.stream.rmi
 

Classes in org.graphstream.stream.rmi that implement ElementSink
 class RMISink
           
 

Methods in org.graphstream.stream.rmi with parameters of type ElementSink
 void RMISource.addElementSink(ElementSink listener)
           
 void RMISource.removeElementSink(ElementSink listener)
           
 

Uses of ElementSink in org.graphstream.stream.thread
 

Classes in org.graphstream.stream.thread that implement ElementSink
 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.
 

Uses of ElementSink in org.graphstream.ui.graphicGraph
 

Classes in org.graphstream.ui.graphicGraph that implement ElementSink
 class GraphicGraph
          Graph representation used in display classes.
 

Methods in org.graphstream.ui.graphicGraph that return types with arguments of type ElementSink
 Iterable<ElementSink> GraphicGraph.elementSinks()
           
 

Methods in org.graphstream.ui.graphicGraph with parameters of type ElementSink
 void GraphicGraph.addElementSink(ElementSink listener)
           
 void GraphicGraph.removeElementSink(ElementSink listener)
           
 

Uses of ElementSink in org.graphstream.ui.layout
 

Subinterfaces of ElementSink in org.graphstream.ui.layout
 interface Layout
          Layout algorithm interface.
 

Uses of ElementSink in org.graphstream.ui.layout.springbox
 

Classes in org.graphstream.ui.layout.springbox that implement ElementSink
 class BarnesHutLayout
          Base implementation of a Barnes-Hut space decomposition and particle interaction algorithm to be used for force-based layout algorithms.
 

Uses of ElementSink in org.graphstream.ui.layout.springbox.implementations
 

Classes in org.graphstream.ui.layout.springbox.implementations that implement ElementSink
 class LinLog
           
 class SpringBox
          The GraphStream Spring-Box layout.
 

Uses of ElementSink in org.graphstream.ui.swingViewer
 

Classes in org.graphstream.ui.swingViewer that implement ElementSink
 class ViewerPipe
          Shell around a proxy pipe coming from the viewer allowing to put viewer listeners on a viewer that runs in a distinct thread.
 

Uses of ElementSink in org.graphstream.util
 

Classes in org.graphstream.util that implement ElementSink
 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.
 



Copyright © 2013. All Rights Reserved.