| 1 | package tmcsim.client.cadclientgui.enums; |
|---|
| 2 | |
|---|
| 3 | public class TableHeaders { |
|---|
| 4 | |
|---|
| 5 | public static final String[] ASSIGNED_INCIDENTS_HEADERS = { "ID", "Master Inc #", |
|---|
| 6 | "Alerts (Hub 2)", "Primary", "Unit/s", "Type", "Address", |
|---|
| 7 | "Location", "Beat", "Area", "OAU", "Time", "Log Time", "Type Code", |
|---|
| 8 | "P", "AGY" }; |
|---|
| 9 | |
|---|
| 10 | public static final String[] UNIT_STATUS_HEADERS = { "ID", "Master Inc #", |
|---|
| 11 | "Unit", "Status", "OOS", "Type", "Current Location", "Destination", |
|---|
| 12 | "Misc", "Stack", "Area", "Badge Number", "Officer", "Timer", |
|---|
| 13 | "Office", "P" }; |
|---|
| 14 | |
|---|
| 15 | public static final String[] PENDING_INCIDENTS_HEADERS = { "ID", "Master Inc #", |
|---|
| 16 | "Alerts (Hub 2)", "P", "Type", "Address", "Location", "City", |
|---|
| 17 | "Beat", "Area", "OAU", "Timer", "Log Time", "Type Code", "AGY" }; |
|---|
| 18 | |
|---|
| 19 | public static final String[] INCIDENT_EDITOR_HEADERS = { "Date", "Type", |
|---|
| 20 | "Address", "Location", "City", "Incident #", "CC", "Area", "Units", |
|---|
| 21 | "Dispo" }; |
|---|
| 22 | } |
|---|