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