Class LayoutLensSupport<V,E>
- java.lang.Object
-
- edu.uci.ics.jung.visualization.transform.AbstractLensSupport<V,E>
-
- edu.uci.ics.jung.visualization.transform.LayoutLensSupport<V,E>
-
- All Implemented Interfaces:
LensSupport
public class LayoutLensSupport<V,E> extends AbstractLensSupport<V,E> implements LensSupport
A class to make it easy to add an examining lens to a jung graph application. See HyperbolicTransformerDemo for an example of how to use it.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class edu.uci.ics.jung.visualization.transform.AbstractLensSupport
AbstractLensSupport.Lens, AbstractLensSupport.LensControls
-
-
Field Summary
Fields Modifier and Type Field Description protected GraphElementAccessor<V,E>
pickSupport
-
Fields inherited from class edu.uci.ics.jung.visualization.transform.AbstractLensSupport
defaultToolTipText, graphMouse, instructions, lens, lensControls, lensGraphMouse, lensTransformer, vv
-
-
Constructor Summary
Constructors Constructor Description LayoutLensSupport(VisualizationViewer<V,E> vv)
LayoutLensSupport(VisualizationViewer<V,E> vv, LensTransformer lensTransformer, ModalGraphMouse lensGraphMouse)
Create an instance with the specified parameters.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
activate()
void
deactivate()
-
Methods inherited from class edu.uci.ics.jung.visualization.transform.AbstractLensSupport
activate, getGraphMouse, getLens, getLensControls, getLensTransformer, setLens, setLensControls
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface edu.uci.ics.jung.visualization.transform.LensSupport
activate, getGraphMouse, getLensTransformer
-
-
-
-
Field Detail
-
pickSupport
protected GraphElementAccessor<V,E> pickSupport
-
-
Constructor Detail
-
LayoutLensSupport
public LayoutLensSupport(VisualizationViewer<V,E> vv)
-
LayoutLensSupport
public LayoutLensSupport(VisualizationViewer<V,E> vv, LensTransformer lensTransformer, ModalGraphMouse lensGraphMouse)
Create an instance with the specified parameters.- Parameters:
vv
- the visualization viewer used for renderinglensTransformer
- the lens transformer to uselensGraphMouse
- the lens input handler
-
-
Method Detail
-
activate
public void activate()
- Specified by:
activate
in interfaceLensSupport
-
deactivate
public void deactivate()
- Specified by:
deactivate
in interfaceLensSupport
-
-