001package edu.pdx.cs410J.phonebill; 002 003import com.google.common.annotations.VisibleForTesting; 004 005/** 006 * The main class for the CS410J Phone Bill Project 007 */ 008public class Project1 { 009 010 @VisibleForTesting 011 static boolean isValidDateAndTime(String dateAndTime) { 012 return true; 013 } 014 015 public static void main(String[] args) { 016 PhoneCall call = new PhoneCall(); // Refer to one of Dave's classes so that we can be sure it is on the classpath 017 System.err.println("Missing command line arguments"); 018 for (String arg : args) { 019 System.out.println(arg); 020 } 021 } 022 023}