Changeset 76 in tmcsimulator-scriptbuilder for trunk/src/scriptbuilder/structures/events
- Timestamp:
- 08/25/2017 12:22:28 PM (9 years ago)
- Location:
- trunk/src/scriptbuilder/structures/events
- Files:
-
- 16 edited
-
ATMSEvaluationEvent.java (modified) (2 diffs)
-
ActivityLogEvaluationEvent.java (modified) (2 diffs)
-
AudioEvent.java (modified) (2 diffs)
-
CADEvaluationEvent.java (modified) (2 diffs)
-
CADEvent.java (modified) (2 diffs)
-
CCTVEvent.java (modified) (3 diffs)
-
CHPRadioEvent.java (modified) (2 diffs)
-
CMSEvaluationEvent.java (modified) (1 diff)
-
FacilitatorEvaluationEvent.java (modified) (2 diffs)
-
MaintenanceRadioEvent.java (modified) (1 diff)
-
ParamicsEvent.java (modified) (1 diff)
-
RadioEvaluationEvent.java (modified) (2 diffs)
-
TMTRadioEvent.java (modified) (1 diff)
-
TelephoneEvent.java (modified) (1 diff)
-
TowEvent.java (modified) (1 diff)
-
UnitEvent.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/scriptbuilder/structures/events/ATMSEvaluationEvent.java
r46 r76 20 20 { 21 21 22 /** 23 * Constructor. 24 */ 22 25 public ATMSEvaluationEvent() 23 26 { … … 25 28 } 26 29 30 /** 31 * A list of the expected actions held by this evaluation event. 32 */ 27 33 public ArrayList<String> expectedAction = new ArrayList<String>(); 28 34 -
trunk/src/scriptbuilder/structures/events/ActivityLogEvaluationEvent.java
r46 r76 20 20 { 21 21 22 /** 23 * Constructor. 24 */ 22 25 public ActivityLogEvaluationEvent() 23 26 { … … 25 28 } 26 29 30 /** 31 * A list of the expected actions held by this evaluation event. 32 */ 27 33 public ArrayList<String> expectedAction = new ArrayList<String>(); 28 34 -
trunk/src/scriptbuilder/structures/events/AudioEvent.java
r46 r76 20 20 { 21 21 22 /** 23 * Constructor. 24 */ 22 25 public AudioEvent() 23 26 { … … 25 28 } 26 29 30 /** 31 * Length of the audio to be played, in seconds. 32 */ 27 33 public Integer audioLength = 0; 28 34 35 /** 36 * File path for the audio file. 37 */ 29 38 public String audioPath = ""; 30 39 -
trunk/src/scriptbuilder/structures/events/CADEvaluationEvent.java
r46 r76 20 20 { 21 21 22 /** 23 * Constructor. 24 */ 22 25 public CADEvaluationEvent() 23 26 { … … 25 28 } 26 29 30 /** 31 * A list of the expected actions held by this evaluation event. 32 */ 27 33 public ArrayList<String> expectedAction = new ArrayList<String>(); 28 34 -
trunk/src/scriptbuilder/structures/events/CADEvent.java
r47 r76 21 21 { 22 22 23 /** 24 * Constructor. 25 */ 23 26 public CADEvent() 24 27 { … … 26 29 } 27 30 31 /** 32 * True if this CAD event has sub-events. 33 */ 28 34 public boolean hasSubEvents = false; 29 35 36 /** 37 * Description of this event. 38 */ 30 39 public String detail = ""; 31 40 -
trunk/src/scriptbuilder/structures/events/CCTVEvent.java
r46 r76 12 12 13 13 /** 14 * Data model for a CCTV event .(Just a stub; CCTV events aren't currently15 * used .)A CCTV event has, for now, a string message.14 * Data model for a CCTV event(Just a stub; CCTV events aren't currently 15 * used). A CCTV event has, for now, a string message. 16 16 * 17 17 * @author Bryan McGuffin … … 20 20 { 21 21 22 /** 23 * Constructor. 24 */ 22 25 public CCTVEvent() 23 26 { … … 25 28 } 26 29 30 /** 31 * The message represented by this event. 32 */ 27 33 public String message = ""; 28 34 -
trunk/src/scriptbuilder/structures/events/CHPRadioEvent.java
r46 r76 22 22 { 23 23 24 /** 25 * Constructor. 26 */ 24 27 public CHPRadioEvent() 25 28 { … … 27 30 } 28 31 32 /** 33 * List of the lines of dialog in this event. 34 */ 29 35 public ArrayList<String> lines = new ArrayList<String>(); 30 36 37 /** 38 * List of the corresponding roles for each line of dialog. 39 */ 31 40 public ArrayList<String> roles = new ArrayList<String>(); 32 41 42 /** 43 * Path for the audio file to be played during this event. 44 */ 33 45 public String radioFile = ""; 34 46 -
trunk/src/scriptbuilder/structures/events/CMSEvaluationEvent.java
r46 r76 21 21 { 22 22 23 /** 24 * Constructor. 25 */ 23 26 public CMSEvaluationEvent() 24 27 { -
trunk/src/scriptbuilder/structures/events/FacilitatorEvaluationEvent.java
r46 r76 20 20 { 21 21 22 /** 23 * Constructor. 24 */ 22 25 public FacilitatorEvaluationEvent() 23 26 { … … 25 28 } 26 29 30 /** 31 * A list of the expected actions held by this evaluation event. 32 */ 27 33 public ArrayList<String> expectedAction = new ArrayList<String>(); 28 34 -
trunk/src/scriptbuilder/structures/events/MaintenanceRadioEvent.java
r46 r76 20 20 { 21 21 22 /** 23 * Constructor. 24 */ 22 25 public MaintenanceRadioEvent() 23 26 { -
trunk/src/scriptbuilder/structures/events/ParamicsEvent.java
r47 r76 21 21 { 22 22 23 /** 24 * Constructor. 25 */ 23 26 public ParamicsEvent() 24 27 { -
trunk/src/scriptbuilder/structures/events/RadioEvaluationEvent.java
r46 r76 20 20 { 21 21 22 /** 23 * Constructor. 24 */ 22 25 public RadioEvaluationEvent() 23 26 { … … 25 28 } 26 29 30 /** 31 * A list of the expected actions held by this evaluation event. 32 */ 27 33 public ArrayList<String> expectedAction = new ArrayList<String>(); 28 34 -
trunk/src/scriptbuilder/structures/events/TMTRadioEvent.java
r46 r76 20 20 { 21 21 22 /** 23 * Constructor. 24 */ 22 25 public TMTRadioEvent() 23 26 { -
trunk/src/scriptbuilder/structures/events/TelephoneEvent.java
r46 r76 22 22 { 23 23 24 /** 25 * Constructor. 26 */ 24 27 public TelephoneEvent() 25 28 { -
trunk/src/scriptbuilder/structures/events/TowEvent.java
r46 r76 20 20 { 21 21 22 /** 23 * Constructor. 24 */ 22 25 public TowEvent() 23 26 { -
trunk/src/scriptbuilder/structures/events/UnitEvent.java
r46 r76 20 20 { 21 21 22 /** 23 * Constructor. 24 */ 22 25 public UnitEvent() 23 26 {
Note: See TracChangeset
for help on using the changeset viewer.
