Uses of Interface
edu.uci.ics.jung.visualization.Layout

Packages that use Layout
edu.uci.ics.jung.visualization   
edu.uci.ics.jung.visualization.contrib   
 

Uses of Layout in edu.uci.ics.jung.visualization
 

Subinterfaces of Layout in edu.uci.ics.jung.visualization
 interface LayoutMutable
          An extended interface for signalling a layout that the underlying graph has been changed.
 

Classes in edu.uci.ics.jung.visualization that implement Layout
 class AbstractLayout
          Implements some of the dirty work of writing a layout algorithm, allowing the user to express their major intent more simply.
 class FadingVertexLayout
          Implements a pass-through visaulizer that fades out nodes that have been removed, and fades in nodes that have appeared.
 class FRLayout
          Implements the Fruchterman-Reingold algorithm for node layout.
 class ISOMLayout
          Implements a self-organizing map layout algorithm, based on Meyer's self-organizing graph methods.
 class SpringLayout
           
 

Methods in edu.uci.ics.jung.visualization that return Layout
 Layout VisualizationViewer.getGraphLayout()
           
 Layout GraphDraw.getGraphLayout()
          Returns the currently operative layout.
 

Methods in edu.uci.ics.jung.visualization with parameters of type Layout
 void VisualizationViewer.setGraphLayout(Layout v)
           
 void GraphDraw.setGraphLayout(Layout l)
          Dynamically chooses a new GraphLayout.
 

Constructors in edu.uci.ics.jung.visualization with parameters of type Layout
VisualizationViewer(Layout layout, Renderer r)
           
FadingVertexLayout(int fadelevels, Layout layout)
          Adds user data to every vertex in the graph.
 

Uses of Layout in edu.uci.ics.jung.visualization.contrib
 

Classes in edu.uci.ics.jung.visualization.contrib that implement Layout
 class CircleLayout
          Positions vertices equally spaced on a regular circle.
 class DAGLayout
           
 class KKLayout
          Implements the Kamada-Kawai algorithm for node layout.
 class KKLayoutInt
          Implements the Kamada-Kawai algorithm for node layout, tweaked to store vertex distances as integers.