/* * 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 telephone conversation. A conversation is made up of lines * of dialog; each line of dialog in the conversation has some text to be * spoken, and a role for the speaker. * * @author Bryan McGuffin */ public class TelephoneEvent extends ScriptEvent { public TelephoneEvent() { super(ScriptEventType.TELEPHONE_EVENT); } public ArrayList lines = new ArrayList(); public ArrayList roles = new ArrayList(); }