/home/ssingh6/NetBeansProjects/CS1/src/people/PersonSpecification.java
 1 /*
 2  * To change this license header, choose License Headers in Project Properties.
 3  * To change this template file, choose Tools | Templates
 4  * and open the template in the editor.
 5  */
 6 package people;
 7 
 8 /**
 9  *
10  * @author ssingh6
11  */
12 public interface PersonSpecification {
13     public String firstName();
14     public String lastName();
15     public int month();
16     public int day();
17     public int year();
18     public String initials();
19     public boolean isBoomer();
20     
21 }
22