// CS 1538 Fall 2009 // Simply a subclass with a constructor, but with no new functionality. // This subclass is simply to distinguish it from other event types. public class ArrivalEvent extends SimEvent { public ArrivalEvent(int new_time) { e_time = new_time; } }