Changeset 161 in tmcsimulator-scriptbuilder for trunk/src/scriptbuilder/structures/events/CHPRadioEvent.java
- Timestamp:
- 12/04/2019 02:43:12 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/scriptbuilder/structures/events/CHPRadioEvent.java
r155 r161 19 19 * @author Bryan McGuffin 20 20 */ 21 public class CHPRadioEvent extends ScriptEvent implements I_XML_Writable 21 public class CHPRadioEvent extends ScriptEvent implements I_XML_Writable, I_AudioEvent 22 22 { 23 23 … … 44 44 */ 45 45 public String radioFile = ""; 46 46 47 /** 48 * ID 49 */ 50 public String id = ""; 51 52 47 53 /** 48 54 * Returns the contents of the CHPRadioEvent to make recording easier. … … 57 63 } 58 64 return fileContents; 65 } 66 67 @Override 68 public String getFileName() 69 { 70 return radioFile; 71 } 72 73 @Override 74 public String getID() 75 { 76 return id; 77 } 78 79 @Override 80 public void setFileName(String s) 81 { 82 radioFile = s; 59 83 } 60 84
Note: See TracChangeset
for help on using the changeset viewer.
