source: EDIS/tags/ed/tracking-ui-core/src/main/flex/gov/va/med/edp/control/config/ConfigurationEvent.as@ 1240

Last change on this file since 1240 was 1240, checked in by George Lilly, 13 years ago

new version from the VA

File size: 1.5 KB
Line 
1/* ConfigurationEvent.as */
2
3package gov.va.med.edp.control.config
4{
5 import com.adobe.cairngorm.control.CairngormEvent;
6
7 import flash.events.Event;
8
9 public class ConfigurationEvent extends CairngormEvent
10 {
11 public static const EVENT_LOAD_CONFIGURATION: String = "loadConfiguration";
12 public static const EVENT_LOAD_SELECTION_CONFIG: String = "loadSelectionConfig";
13 public static const EVENT_SAVE_SELECTION_CONFIG: String = "saveSelectionConfig";
14 public static const EVENT_SAVE_COLOR_CONFIG: String = "saveColorConfig";
15 public static const EVENT_LOAD_STAFF_CONFIG: String = "loadStaffConfig";
16 public static const EVENT_SAVE_STAFF_CONFIG: String = "saveStaffConfig";
17 public static const EVENT_SAVE_PARAM_CONFIG: String = "saveParamConfig";
18 public static const EVENT_BED_MODIFIED: String = "bedModified";
19 public static const EVENT_BOARD_MODIFIED: String = "boardModified";
20 public static const EVENT_COLOR_MODIFIED: String = "colorModified";
21 public static const EVENT_PARAM_MODIFIED: String = "paramModified";
22 public static const EVENT_PARAM_MODIFIED_RESET: String = "paramModifiedReset";
23 public static const EVENT_SELECTION_MODIFIED: String = "selectionModified";
24 public static const EVENT_STAFF_MODIFIED: String = "staffModified";
25
26 public function ConfigurationEvent(type: String, bubbles: Boolean=true,
27 cancelable: Boolean=false)
28 {
29 super(type, bubbles, cancelable);
30 }
31
32 override public function clone():Event
33 {
34 return new ConfigurationEvent(type);
35 }
36 }
37}
Note: See TracBrowser for help on using the repository browser.