The Datastore Java API Overview page <
http://code.google.com/appengine/
docs/java/datastore/overview.html> has a typo.
The constructor in the Employee class (Employee.java) should read
Employee, not Person.
Current:
public Person(String firstName, String lastName, Date hireDate) {
Should be:
public Employee(String firstName, String lastName, Date hireDate) {