package simulator; import java.util.Collection; /* * PriorityBasedCustomer.java * Created on Jan 27, 2005 * */ /** * PriorityBasedCustomer - This is the default customer that visits each * ride in order of their priority. * @author Ping * */ public class PriorityBasedCustomer extends Customer { public static String CUSTOMER_TYPE = "Highest Priority First"; public PriorityBasedCustomer(String name, Collection> wishList, ExitStrategy exitStrategy, Time timeEntered, Time desiredExitTime) { super(name, wishList, exitStrategy, timeEntered, desiredExitTime); } }