Uses of Interface
org.graphstream.stream.AttributeSink

Packages that use AttributeSink
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.spriteManager   
org.graphstream.ui.swingViewer   
org.graphstream.util   
 

Uses of AttributeSink in org.graphstream.graph
 

Subinterfaces of AttributeSink 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 AttributeSink
 Iterable<AttributeSink> Graph.attributeSinks()
          Returns an "iterable" of AttributeSink objects registered to this graph.
 

Uses of AttributeSink in org.graphstream.graph.implementations
 

Classes in org.graphstream.graph.implementations that implement AttributeSink
 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 AttributeSink
 Iterable<AttributeSink> AbstractGraph.attributeSinks()
           
 

Methods in org.graphstream.graph.implementations with parameters of type AttributeSink
 void AbstractGraph.addAttributeSink(AttributeSink sink)
           
 void AbstractGraph.removeAttributeSink(AttributeSink sink)
           
 

Uses of AttributeSink in org.graphstream.stream
 

Subinterfaces of AttributeSink 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 AttributeSink
 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 AttributeSink
 Iterable<AttributeSink> SourceBase.attributeSinks()
           
 

Methods in org.graphstream.stream with parameters of type AttributeSink
 void SourceBase.addAttributeSink(AttributeSink sink)
           
 void SourceAdapter.addAttributeSink(AttributeSink sink)
           
 void PipeAdapter.addAttributeSink(AttributeSink listener)
           
 void Source.addAttributeSink(AttributeSink sink)
          Add a sink for attribute events only.
 void SourceBase.removeAttributeSink(AttributeSink sink)
           
 void SourceAdapter.removeAttributeSink(AttributeSink sink)
           
 void PipeAdapter.removeAttributeSink(AttributeSink listener)
           
 void Source.removeAttributeSink(AttributeSink sink)
          Remove an attribute sink.
 

Uses of AttributeSink in org.graphstream.stream.file
 

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

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

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

Uses of AttributeSink in org.graphstream.stream.rmi
 

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

Methods in org.graphstream.stream.rmi with parameters of type AttributeSink
 void RMISource.addAttributeSink(AttributeSink listener)
           
 void RMISource.removeAttributeSink(AttributeSink listener)
           
 

Uses of AttributeSink in org.graphstream.stream.thread
 

Classes in org.graphstream.stream.thread that implement AttributeSink
 class ThreadProxyPipe
          Filter that allows to pass graph events between two threads without explicit synchronization.
 

Uses of AttributeSink in org.graphstream.ui.graphicGraph
 

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

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

Methods in org.graphstream.ui.graphicGraph with parameters of type AttributeSink
 void GraphicGraph.addAttributeSink(AttributeSink listener)
           
 void GraphicGraph.removeAttributeSink(AttributeSink listener)
           
 

Uses of AttributeSink in org.graphstream.ui.layout
 

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

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

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

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

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

Uses of AttributeSink in org.graphstream.ui.spriteManager
 

Classes in org.graphstream.ui.spriteManager that implement AttributeSink
 class SpriteManager
          Set of sprites associated with a graph.
 

Uses of AttributeSink in org.graphstream.ui.swingViewer
 

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

Classes in org.graphstream.util that implement AttributeSink
 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 © 2012. All Rights Reserved.