/* * 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 scriptbuilder.structures.ScriptEvent; /** * Data model for a witness event. A witness has a name, a phone number, and a * street address. * * @author Bryan McGuffin */ public class WitnessEvent extends ScriptEvent { /** * Constructor. Generate a new script event that has a witness event icon. */ public WitnessEvent() { super(ScriptEventType.WITNESS_EVENT); } public String witnessAddress = ""; public String witnessName = ""; public String witnessNum = ""; }