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