Uses of Interface
edu.uci.ics.jung.visualization.transform.Transformer

Packages that use Transformer
edu.uci.ics.jung.visualization Provides a visualization mechanism for drawing and rendering Graphs. 
edu.uci.ics.jung.visualization.control   
edu.uci.ics.jung.visualization.transform   
edu.uci.ics.jung.visualization.transform.shape   
samples.graph Provides sample graph code that may be of interest. 
 

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

Classes in edu.uci.ics.jung.visualization that implement Transformer
 class VisualizationViewer
          A class that maintains many of the details necessary for creating visualizations of graphs.
 

Uses of Transformer in edu.uci.ics.jung.visualization.control
 

Classes in edu.uci.ics.jung.visualization.control that implement Transformer
 class SatelliteVisualizationViewer
          A VisualizationViewer that can act as a satellite view for another (master) VisualizationViewer.
 

Uses of Transformer in edu.uci.ics.jung.visualization.transform
 

Subinterfaces of Transformer in edu.uci.ics.jung.visualization.transform
 interface MutableTransformer
          Provides an API for the mutation of a transformer and for adding listeners for changes on the transformer
 

Classes in edu.uci.ics.jung.visualization.transform that implement Transformer
 class AffineTransformer
          Provides methods to map points from one coordinate system to another, by delegating to a wrapped AffineTransform (uniform) and its inverse.
 class HyperbolicTransformer
          HyperbolicTransformer wraps a MutableAffineTransformer and modifies the transform and inverseTransform methods so that they create a fisheye projection of the graph points, with points near the center spread out and points near the edges collapsed onto the circumference of an ellipse.
 class LensTransformer
          LensTransformer wraps a MutableAffineTransformer and modifies the transform and inverseTransform methods so that they create a projection of the graph points within an elliptical lens.
 class MagnifyTransformer
          MagnifyTransformer wraps a MutableAffineTransformer and modifies the transform and inverseTransform methods so that they create an enlarging projection of the graph points.
 class MutableAffineTransformer
          Provides methods to mutate the AffineTransform used by AffineTransformer base class to map points from one coordinate system to another.
 class MutableTransformerDecorator
          a complete decorator that wraps a MutableTransformer.
 

Uses of Transformer in edu.uci.ics.jung.visualization.transform.shape
 

Subinterfaces of Transformer in edu.uci.ics.jung.visualization.transform.shape
 interface ShapeTransformer
          Provides methods to map points from one coordinate system to another: graph to screen and screen to graph.
 

Classes in edu.uci.ics.jung.visualization.transform.shape that implement Transformer
 class HyperbolicShapeTransformer
          HyperbolicShapeTransformer extends HyperbolicTransformer and adds implementations for methods in ShapeTransformer.
 class MagnifyShapeTransformer
          MagnifyShapeTransformer extends MagnifyTransformer and adds implementations for methods in ShapeTransformer.
 

Fields in edu.uci.ics.jung.visualization.transform.shape declared as Transformer
protected  Transformer TransformingGraphics.transformer
          the transformer to apply
 

Methods in edu.uci.ics.jung.visualization.transform.shape that return Transformer
 Transformer TransformingGraphics.getTransformer()
           
 Transformer TransformingPluggableRenderer.getTransformer()
           
 

Methods in edu.uci.ics.jung.visualization.transform.shape with parameters of type Transformer
 void TransformingGraphics.setTransformer(Transformer transformer)
           
 void TransformingPluggableRenderer.setTransformer(Transformer transformer)
           
 

Constructors in edu.uci.ics.jung.visualization.transform.shape with parameters of type Transformer
TransformingGraphics(Transformer transformer)
           
TransformingGraphics(Transformer transformer, Graphics2D delegate)
           
 

Uses of Transformer in samples.graph
 

Fields in samples.graph declared as Transformer
protected  Transformer PluggableRendererDemo.affineTransformer