/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

  1. package com.google.maps.extras.panecontentmanager
  2. {
  3. import com.google.maps.interfaces.IOverlay;
  4. import com.google.maps.interfaces.IPane;
  5. /*
  6. PaneContentManager.
  7. a new way to organize a list of overlay in a pane.
  8. */
  9. public interface IPaneContentManager
  10. {
  11. function set pane(value:IPane):void;
  12. function set dataProvider(value:Array):void;
  13. function set overlayFunction(value:Function):void;
  14. function get selectedOverlay():IOverlay;
  15. /**
  16. * execute what has to be done.
  17. *
  18. *
  19. */
  20. function execute():void;
  21. }
  22. }