source: EDIS/trunk/java/tracking-ui-core/src/main/flex/gov/va/med/edp/control/config/SaveBedConfigEvent.as@ 1227

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

initial load of EDIS 1.0

File size: 544 bytes
Line 
1/* SaveBedConfigEvent.as */
2
3package gov.va.med.edp.control.config
4{
5 import flash.events.Event;
6 import com.adobe.cairngorm.control.CairngormEvent;
7
8 public class SaveBedConfigEvent extends CairngormEvent
9 {
10 public static const EVENT_SAVE_CONFIG_BEDS:String = "saveConfigBeds";
11
12 public function SaveBedConfigEvent(type:String, bubbles:Boolean=true, cancelable:Boolean=false)
13 {
14 super(type, bubbles, cancelable);
15 }
16
17 override public function clone():Event
18 {
19 return new SaveBedConfigEvent(type);
20 }
21 }
22}
Note: See TracBrowser for help on using the repository browser.