KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > batik > gvt > Selector


1 /*
2
3    Copyright 2000,2002-2003 The Apache Software Foundation
4
5    Licensed under the Apache License, Version 2.0 (the "License");
6    you may not use this file except in compliance with the License.
7    You may obtain a copy of the License at
8
9        http://www.apache.org/licenses/LICENSE-2.0
10
11    Unless required by applicable law or agreed to in writing, software
12    distributed under the License is distributed on an "AS IS" BASIS,
13    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14    See the License for the specific language governing permissions and
15    limitations under the License.
16
17  */

18 package org.apache.batik.gvt;
19
20 import org.apache.batik.gvt.event.GraphicsNodeChangeListener;
21 import org.apache.batik.gvt.event.GraphicsNodeKeyListener;
22 import org.apache.batik.gvt.event.GraphicsNodeMouseListener;
23 import org.apache.batik.gvt.event.SelectionListener;
24
25 /**
26  * Interface which allows selection of GraphicsNodes and their contents.
27  *
28  * @author <a HREF="mailto:bill.haneman@ireland.sun.com">Bill Haneman</a>
29  * @version $Id: Selector.java,v 1.6 2004/08/18 07:14:27 vhardy Exp $
30  */

31 public interface Selector extends GraphicsNodeMouseListener,
32                                   GraphicsNodeKeyListener,
33                                   GraphicsNodeChangeListener {
34
35     /**
36      * Get the contents of the current selection buffer.
37      */

38     public Object JavaDoc getSelection();
39
40     /**
41      * Reports whether the current selection contains any objects.
42      */

43     public boolean isEmpty();
44
45     /**
46      * Add a SelectionListener to this Selector's notification list.
47      * @param l the SelectionListener to add.
48      */

49     public void addSelectionListener(SelectionListener l);
50
51
52     /**
53      * Remove a SelectionListener from this Selector's notification list.
54      * @param l the SelectionListener to be removed.
55      */

56     public void removeSelectionListener(SelectionListener l);
57  
58 }
59
Popular Tags