Changeset 76 in tmcsimulator-scriptbuilder for trunk/src/scriptbuilder/structures/ScriptEvent.java
- Timestamp:
- 08/25/2017 12:22:28 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/scriptbuilder/structures/ScriptEvent.java
r72 r76 18 18 * Compare the Script Events based on their type enum. 19 19 * 20 * @param othe other script event to be compared20 * @param a the other script event to be compared 21 21 * @return -1, 0, or 1 depending on if this event's type comes before, 22 22 * simultaneously, or after the other event's type in the enum list … … 130 130 } 131 131 132 /** 133 * Generate a new script event object of the specified type. 134 * 135 * @param t the type of the script event 136 * @return a new I_ScriptEvent object matching the given type 137 */ 132 138 public static I_ScriptEvent factoryByType(ScriptEventType t) 133 139 { … … 172 178 } 173 179 } 174 180 181 /** 182 * Determines if the event in question is an evaluation event. 183 * 184 * @param event the event to be checked 185 * @return true if the event implements I_EvaluationEvent 186 */ 175 187 public static boolean isEvaluationEvent(I_ScriptEvent event) 176 188 {
Note: See TracChangeset
for help on using the changeset viewer.
