The following text was written to the standard output stream when the PersonSpecification program was executed from Netbeans.
/* * Person Specification */ package people; /** * * @author dmaslows */ public interface PersonSpecification { public String firstName(); public String lastName(); public int month(); public int day(); public int year(); public String initials(); public boolean isBoomer(); }