001package edu.pdx.cs410J.whitlock; 002 003import edu.pdx.cs410J.AbstractAppointmentBook; 004 005/** 006 * The main class for the CS410J appointment book Project 007 */ 008public class Project1 { 009 010 public static void main(String[] args) { 011 Class c = AbstractAppointmentBook.class; // Refer to one of Dave's classes so that we can be sure it is on the classpath 012 System.err.println("Missing command line arguments"); 013 for (String arg : args) { 014 System.out.println(arg); 015 } 016 System.exit(1); 017 } 018 019}