/home/ffrigin/NetBeansProjects/CS1/src/people/PersonSpecification.java |
1 /* 2 * Person functionality 3 */ 4 package people; 5 /** 6 * 7 * @author ffrigin 8 */ 9 public interface PersonSpecification { 10 public String firstName(); 11 public String lastName(); 12 public int month(); 13 public int day(); 14 public int year(); 15 public String initials(); 16 public boolean isBoomer(); 17 }