package edu.pdx.cs410J.apptbook; import edu.pdx.cs410J.AbstractAppointmentBook; /** * The main class for the CS410J appointment book Project */ public class Project1 { public static void main(String[] args) { Class c = AbstractAppointmentBook.class; // Refer to one of Dave's classes so that we can be sure it is on the classpath System.err.println("Missing command line arguments"); for (String arg : args) { System.out.println(arg); } System.exit(1); } }