source: EDIS/tags/ed/tracking-ui-core/src/main/flex/gov/va/med/edp/control/config/ChangeFieldEvent.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: 603 bytes
Line 
1/* ChangeFieldEvent.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 ChangeFieldEvent extends CairngormEvent
10 {
11 public static const EVENT_CHANGE_PARAM_FIELD : String = "changeParamField";
12
13 public var field: String;
14 public var value: *;
15
16 public function ChangeFieldEvent(type:String, bubbles:Boolean=true, cancelable:Boolean=false)
17 {
18 super(type, bubbles, cancelable);
19 }
20
21 override public function clone():Event
22 {
23 return new ChangeFieldEvent(type);
24 }
25 }
26}
Note: See TracBrowser for help on using the repository browser.