KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > lamatek > tags > google > GoogleMapEventListener


1 package com.lamatek.tags.google;
2
3 import java.util.Vector JavaDoc;
4
5 /**
6  * GoogleMapEventListener
7  *
8  * This method is implemented in all tags that can handle events. Developers should
9  * not override this class.
10  *
11  * @author Tom Cole
12  * @version 0.40
13  */

14 public interface GoogleMapEventListener {
15     /**
16      * Adds a GoogleMapEventTag to the list of available events.
17      *
18      * @param event A GoogleMapEventTag.
19      */

20     public void addEvent(GoogleMapEventTag event);
21     /**
22      * Returns the current list of event listeners.
23      *
24      * @return A Vector of GoogleMapEventTags
25      */

26     public Vector JavaDoc getEvents();
27     
28 }
29
Popular Tags