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

Packages that use VertexLocationFunction
edu.uci.ics.jung.io Provides a set of graph file format interpreters for loading graphs from disk. 
edu.uci.ics.jung.visualization Provides a visualization mechanism for drawing and rendering Graphs. 
edu.uci.ics.jung.visualization.contrib These are additional layouts contributed by various users. 
edu.uci.ics.jung.visualization.subLayout   
scratch.scott   
 

Uses of VertexLocationFunction in edu.uci.ics.jung.io
 

Methods in edu.uci.ics.jung.io with parameters of type VertexLocationFunction
 void PajekNetWriter.save(Graph g, String filename, VertexStringer vs, NumberEdgeValue nev, VertexLocationFunction vld)
          Saves g to filename.
 void PajekNetWriter.save(Graph graph, Writer w, VertexStringer vs, NumberEdgeValue nev, VertexLocationFunction vld)
          Writes graph to w.
 

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

Subinterfaces of VertexLocationFunction in edu.uci.ics.jung.visualization
 interface Layout
          A generalized interface is a mechanism for returning (x,y) coordinates from vertices.
 interface LayoutMutable
          An extended interface for signalling a layout that the underlying graph has been changed.
 interface PersistentLayout
          interface for PersistentLayout Also holds a nested class Point to serialize the Vertex locations
 interface SettableVertexLocationFunction
          An extension of VertexLocationFunction that provides a means to alter the location for a ArchetypeVertex.
 

Classes in edu.uci.ics.jung.visualization that implement VertexLocationFunction
 class AbstractLayout
          Implements some of the dirty work of writing a layout algorithm, allowing the user to express their major intent more simply.
 class DefaultSettableVertexLocationFunction
          A Map-based implementation of SettableVertexLocationFunction.
 class FadingVertexLayout
          Deprecated. If you are using this code, PLEASE CONTACT US
 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 LayoutDecorator
          a pure decorator for the Layout interface.
 class PersistentLayoutImpl
          Implementation of PersistentLayout.
 class RandomVertexLocationDecorator
           
 class SpringLayout
          The SpringLayout package represents a visualization of a set of nodes.
 class StaticLayout
           
 

Fields in edu.uci.ics.jung.visualization declared as VertexLocationFunction
protected  VertexLocationFunction AbstractLayout.vertex_locations
           
 

Methods in edu.uci.ics.jung.visualization that return VertexLocationFunction
static VertexLocationFunction VertexLocationUtils.scale(VertexLocationFunction vld, double dx, double dy)
           
 

Methods in edu.uci.ics.jung.visualization with parameters of type VertexLocationFunction
 void AbstractLayout.initialize(Dimension size, VertexLocationFunction v_locations)
           
static VertexLocationFunction VertexLocationUtils.scale(VertexLocationFunction vld, double dx, double dy)
           
 

Constructors in edu.uci.ics.jung.visualization with parameters of type VertexLocationFunction
DefaultSettableVertexLocationFunction(VertexLocationFunction vlf)
           
 

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

Classes in edu.uci.ics.jung.visualization.contrib that implement VertexLocationFunction
 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.
 class TreeLayout
           
 

Uses of VertexLocationFunction in edu.uci.ics.jung.visualization.subLayout
 

Classes in edu.uci.ics.jung.visualization.subLayout that implement VertexLocationFunction
 class SubLayoutDecorator
          Extends the base decorator class and overrides methods to cause the location methods to check with the sublayouts for location information
 

Uses of VertexLocationFunction in scratch.scott
 

Classes in scratch.scott that implement VertexLocationFunction
 class AestheticSpringVisualizer
          The SpringVisualizer package represents a visualization of a set of nodes.
 class FastScalableMDS