1 /*
2 * Copyright (c) 2005, the JUNG Project and the Regents of the University of
3 * California All rights reserved.
4 *
5 * This software is open-source under the BSD license; see either "license.txt"
6 * or http://jung.sourceforge.net/license.txt for a description.
7 *
8 * Created on Aug 5, 2005
9 */
10
11 package edu.uci.ics.jung.visualization.transform;
12
13 import edu.uci.ics.jung.visualization.control.ModalGraphMouse;
14
15 /**
16 * basic API for implementing lens projection support
17 *
18 * @author Tom Nelson
19 *
20 */
21 public interface LensSupport {
22
23 void activate();
24 void deactivate();
25 void activate(boolean state);
26 LensTransformer getLensTransformer();
27
28 ModalGraphMouse getGraphMouse();
29 }