// 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 ArrivalEventFloat extends SimEventFloat { public ArrivalEventFloat(double new_time) { e_time = new_time; } }