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

Packages that use MutableTransformer
edu.uci.ics.jung.visualization Provides a visualization mechanism for drawing and rendering Graphs. 
edu.uci.ics.jung.visualization.transform   
edu.uci.ics.jung.visualization.transform.shape   
 

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

Fields in edu.uci.ics.jung.visualization declared as MutableTransformer
protected  MutableTransformer BirdsEyeVisualizationViewer.layoutTransformer
          Deprecated.  
protected  MutableTransformer VisualizationViewer.layoutTransformer
           
protected  MutableTransformer PluggableRenderer.viewTransformer
           
protected  MutableTransformer VisualizationViewer.viewTransformer
          Provides support for mutating the AffineTransform that is supplied to the rendering Graphics2D
 

Methods in edu.uci.ics.jung.visualization that return MutableTransformer
 MutableTransformer BirdsEyeVisualizationViewer.getLayoutTransformer()
          Deprecated.  
 MutableTransformer VisualizationViewer.getLayoutTransformer()
           
 MutableTransformer VisualizationViewer.getViewTransformer()
           
 

Methods in edu.uci.ics.jung.visualization with parameters of type MutableTransformer
 void BirdsEyeVisualizationViewer.setLayoutTransformer(MutableTransformer layoutTransformer)
          Deprecated.  
 void VisualizationViewer.setLayoutTransformer(MutableTransformer transformer)
           
 void PluggableRenderer.setViewTransformer(MutableTransformer viewTransformer)
           
 void VisualizationViewer.setViewTransformer(MutableTransformer transformer)
           
 

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

Classes in edu.uci.ics.jung.visualization.transform that implement MutableTransformer
 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.
 

Fields in edu.uci.ics.jung.visualization.transform declared as MutableTransformer
protected  MutableTransformer MutableTransformerDecorator.delegate
           
protected  MutableTransformer AbstractLensSupport.savedViewTransformer
           
 

Methods in edu.uci.ics.jung.visualization.transform that return MutableTransformer
 MutableTransformer MutableTransformerDecorator.getDelegate()
           
 

Methods in edu.uci.ics.jung.visualization.transform with parameters of type MutableTransformer
 void MutableTransformerDecorator.setDelegate(MutableTransformer delegate)
           
 

Constructors in edu.uci.ics.jung.visualization.transform with parameters of type MutableTransformer
HyperbolicTransformer(Component component, MutableTransformer delegate)
          create an instance with a possibly shared transform
LensTransformer(Component component, MutableTransformer delegate)
          create an instance with a possibly shared transform
MagnifyTransformer(Component component, MutableTransformer delegate)
          create an instance with a possibly shared transform
MutableTransformerDecorator(MutableTransformer delegate)
           
 

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

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

Methods in edu.uci.ics.jung.visualization.transform.shape with parameters of type MutableTransformer
 void PluggableRendererDecorator.setViewTransformer(MutableTransformer viewTransformer)
           
 

Constructors in edu.uci.ics.jung.visualization.transform.shape with parameters of type MutableTransformer
HyperbolicShapeTransformer(Component component, MutableTransformer delegate)
          Create an instance, setting values from the passed component and registering to listen for size changes on the component, with a possibly shared transform delegate.
MagnifyShapeTransformer(Component component, MutableTransformer delegate)
          Create an instance, setting values from the passed component and registering to listen for size changes on the component, with a possibly shared transform delegate.