package gov.va.med.edp.model { import mx.collections.ArrayCollection; import gov.va.med.edp.vo.LogSelectorVO; [Bindable] public class LogEntryList { public var entries: ArrayCollection; public var selectedID: Number; public var selectedIndex: int = -1; public var sortField: String = ""; public var sortDescending: Boolean; public var token: String; public function resetSelection(): void { selectedIndex = -1; selectedID = 0; } } }