/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package scriptbuilder.structures.events; import java.util.ArrayList; import scriptbuilder.structures.ScriptEvent; /** * Data model for a CHP radio event. A CHP radio transmission has a * conversation, with dialog between a field unit and a dispatch center. It also * has an audio file which has that conversation acted out. * * @author Bryan McGuffin */ public class CHPRadioEvent extends ScriptEvent { public CHPRadioEvent() { super(ScriptEventType.CHP_RADIO_EVENT); } public ArrayList lines = new ArrayList(); public ArrayList roles = new ArrayList(); public String radioFile = ""; }