1234567891011121314151617 |
- package
- {
- import com.supermap.framework.events.BaseEvent;
- public class QueryLayerEvent extends BaseEvent
- {
- public static const QUERY_SUCCESS:String = "QUERY_SUCCESS";
-
- public static const QUERY_FAULT:String = "QUERY_FAULT";
-
- public function QueryLayerEvent(type:String, data:Object=null)
- {
- super(type);
- if (data != null) _data = data;
- }
- }
- }
|