| Revision 1,
775 bytes
checked in by bmcguffin, 9 years ago
(diff) |
|
2017/07/18: Uploaded entire prototype to SVN repo.
|
| Rev | Line | |
|---|
| 1 | /* |
|---|
| 2 | * To change this license header, choose License Headers in Project Properties. |
|---|
| 3 | * To change this template file, choose Tools | Templates |
|---|
| 4 | * and open the template in the editor. |
|---|
| 5 | */ |
|---|
| 6 | package scriptbuilder.structures.events; |
|---|
| 7 | |
|---|
| 8 | import java.util.ArrayList; |
|---|
| 9 | import scriptbuilder.structures.ScriptEvent; |
|---|
| 10 | |
|---|
| 11 | /** |
|---|
| 12 | * Data model for a Paramics event. Paramics data has a status, an event type, a |
|---|
| 13 | * location ID, and some number of affected lanes. |
|---|
| 14 | * |
|---|
| 15 | * @author Bryan McGuffin |
|---|
| 16 | */ |
|---|
| 17 | public class ParamicsEvent extends ScriptEvent |
|---|
| 18 | { |
|---|
| 19 | |
|---|
| 20 | public ParamicsEvent() |
|---|
| 21 | { |
|---|
| 22 | super(ScriptEventType.PARAMICS_EVENT); |
|---|
| 23 | } |
|---|
| 24 | |
|---|
| 25 | public String status = ""; |
|---|
| 26 | |
|---|
| 27 | public String type = ""; |
|---|
| 28 | |
|---|
| 29 | public ArrayList<Integer> laneNums = new ArrayList<Integer>(); |
|---|
| 30 | |
|---|
| 31 | public String locationID = ""; |
|---|
| 32 | |
|---|
| 33 | } |
|---|
Note: See
TracBrowser
for help on using the repository browser.