Changeset 108 for trunk/as3/com/jeroenwijering/events
- Timestamp:
- 11/07/08 12:11:46 (16 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/as3/com/jeroenwijering/events/AbstractView.as
r88 r108 7 7 8 8 9 import flash.display.MovieClip; 9 10 import flash.events.EventDispatcher; 10 import flash.display.MovieClip;11 11 12 12 … … 66 66 public function sendEvent(typ:String,prm:Object=undefined):void { }; 67 67 68 /** 69 * Find a plugin name among the player's loaded plugins. 70 * 71 * @param plg The plugin to find. 72 **/ 73 public function getPluginName(plg:Object):String { return ""; }; 74 75 /** 76 * Get configuration variables specific to a plugin. 77 * 78 * @param plg The plugin whose configuration to return. 79 **/ 80 public function getPluginConfig(plgname:Object):Object { return {}; }; 81 82 68 83 69 84 }
