CS1 Standard Demo Page

The following text was written to the standard output stream when the PersonSpecification.java program was executed from Netbeans.

  /*
   * 
   */
  package people;
  
  /**
   *
   * @author ecuevas
   */
 public interface PersonSpecification {
 
     public String firstName();
     public String lastName();
     public int month();
     public int day();
     public int year();
     public String initials();
     public boolean isBoomer();
 }