jp.sf.mapswidgets
Interface MarkerListener

All Superinterfaces:
java.util.EventListener, org.eclipse.swt.internal.SWTEventListener
All Known Implementing Classes:
MarkerAdapter

public interface MarkerListener
extends org.eclipse.swt.internal.SWTEventListener

Classes which implement this interface provide methods that deal with the events that are generated in a Marker.

After creating an instance of a class that implements this interface it can be added to a control using the addMarkerListener method and removed using the removeMarkerListener method.

See Google Maps API documentation [Class Reference > GMarker > Events].

See Also:
MarkerAdapter

Method Summary
 void clicked()
          Called when the user clicks on the marker.
 void infoWindowClosed()
          Called when the info window above the marker is closed.
 void infoWindowOpend()
          Called when the info window is opened above the marker.
 

Method Detail

clicked

void clicked()
Called when the user clicks on the marker.

See Google Maps API documentation [Class Reference > GMarker > Events > click].


infoWindowClosed

void infoWindowClosed()
Called when the info window above the marker is closed.

See Google Maps API documentation [Class Reference > GMarker > Events > infowindowclose].


infoWindowOpend

void infoWindowOpend()
Called when the info window is opened above the marker.

See Google Maps API documentation [Class Reference > GMarker > Events > infowindowopen].