/src/com/google/maps/extras/panecontentmanager/IPaneContentManager.as
http://gmaps-utility-library-flash.googlecode.com/ · ActionScript · 24 lines · 13 code · 2 blank · 9 comment · 0 complexity · 680efa3c921e2f663e774291c213e53d MD5 · raw file
- package com.google.maps.extras.panecontentmanager
- {
- import com.google.maps.interfaces.IOverlay;
- import com.google.maps.interfaces.IPane;
- /*
- PaneContentManager.
- a new way to organize a list of overlay in a pane.
- */
- public interface IPaneContentManager
- {
- function set pane(value:IPane):void;
-
- function set dataProvider(value:Array):void;
-
- function set overlayFunction(value:Function):void;
- function get selectedOverlay():IOverlay;
- /**
- * execute what has to be done.
- *
- *
- */
- function execute():void;
- }
- }