Changeset 76 in tmcsimulator-scriptbuilder for trunk/src/event
- Timestamp:
- 08/25/2017 12:22:28 PM (9 years ago)
- Location:
- trunk/src/event/editor
- Files:
-
- 8 edited
-
AudioPanel.java (modified) (1 diff)
-
CADLogPanel.java (modified) (2 diffs)
-
CCTVPanel.java (modified) (3 diffs)
-
CHPRadioPanel.java (modified) (1 diff)
-
CMSEvaluationPanel.java (modified) (1 diff)
-
Editor.java (modified) (2 diffs)
-
RemoveablePanel.java (modified) (1 diff)
-
ScriptEventEditorPanel.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/event/editor/AudioPanel.java
r7 r76 26 26 } 27 27 28 /** 29 * Load the script event associated with this editor panel. 30 * 31 * @param sei The script event in question 32 */ 33 @Override 28 34 public void getEventObject(I_ScriptEvent sei) 29 35 { -
trunk/src/event/editor/CADLogPanel.java
r7 r76 29 29 } 30 30 31 /** 32 * Load the script event associated with this editor panel. 33 * 34 * @param sei The script event in question 35 */ 36 @Override 31 37 public void getEventObject(I_ScriptEvent sei) 32 38 { … … 42 48 public void keyPressed(KeyEvent e) 43 49 { 44 if (e.getKeyCode() == KeyEvent.VK_ENTER)50 if (e.getKeyCode() == KeyEvent.VK_ENTER) 45 51 { 46 52 event.detail = CadTextField.getText(); -
trunk/src/event/editor/CCTVPanel.java
r50 r76 54 54 } 55 55 56 @Override 56 57 public void setRemoveListener(ActionListener listener) 57 58 { … … 59 60 } 60 61 61 public boolean isOptional() 62 { 63 return false; 64 } 65 62 @Override 66 63 public void getEventObject(I_ScriptEvent sei) 67 64 { … … 73 70 } 74 71 72 @Override 75 73 public void update(Observable o, Object arg) 76 74 { -
trunk/src/event/editor/CHPRadioPanel.java
r7 r76 31 31 } 32 32 33 @Override 33 34 public void getEventObject(I_ScriptEvent sei) 34 35 { -
trunk/src/event/editor/CMSEvaluationPanel.java
r50 r76 36 36 } 37 37 38 @Override 38 39 public void getEventObject(I_ScriptEvent sei) 39 40 { -
trunk/src/event/editor/Editor.java
r7 r76 452 452 private PropertyModel model = new PropertyModel(); 453 453 454 public PropertyModel getPropertyModel()455 {456 return model;457 }454 // public PropertyModel getPropertyModel() 455 // { 456 // return model; 457 // } 458 458 459 459 public void addProperty(Properties property, I_ScriptEvent se) … … 489 489 }; 490 490 491 /** 492 * Blank constructor for a new editor. 493 */ 491 494 public Editor() 492 495 { -
trunk/src/event/editor/RemoveablePanel.java
r7 r76 7 7 { 8 8 9 10 9 /** 10 * Set up the listener for removing this panel. 11 * 12 * @param listener the remove listener to be added 13 */ 11 14 void setRemoveListener(ActionListener listener); 12 15 } -
trunk/src/event/editor/ScriptEventEditorPanel.java
r7 r76 16 16 { 17 17 18 /** 19 * Load the script event associated with this editor panel. 20 * 21 * @param sei The script event in question 22 */ 18 23 void getEventObject(I_ScriptEvent sei); 19 24 }
Note: See TracChangeset
for help on using the changeset viewer.
