source: EDIS/tags/ed/tracking-ui-core/src/main/flex/gov/va/med/edp/control/SortHeaderEvent.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: 688 bytes
Line 
1/* SortHeaderEvent.as */
2
3package gov.va.med.edp.control
4{
5 import com.adobe.cairngorm.control.CairngormEvent;
6
7 import flash.events.Event;
8
9 public class SortHeaderEvent extends CairngormEvent
10 {
11 public static const EVENT_SORT_LOG_SELECTOR : String = "sortLogSelector";
12 public static const EVENT_SORT_DISPLAY_BOARD : String = "sortDisplayBoard";
13
14 public var sortField: String;
15 public var sortDescending: Boolean;
16
17 public function SortHeaderEvent(type:String, bubbles:Boolean=true, cancelable:Boolean=false)
18 {
19 super(type, bubbles, cancelable);
20 }
21
22 override public function clone():Event
23 {
24 return new SortHeaderEvent(type);
25 }
26 }
27}
Note: See TracBrowser for help on using the repository browser.