/* * 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 Paramics event. Paramics data has a status, an event type, a * location ID, and some number of affected lanes. * * @author Bryan McGuffin */ public class ParamicsEvent extends ScriptEvent { public ParamicsEvent() { super(ScriptEventType.PARAMICS_EVENT); } public String status = ""; public String type = ""; public ArrayList laneNums = new ArrayList(); public String locationID = ""; }