package com.db4o.samples;

// demonstrates inheriting from a Persitent class
public class Individual extends Person
{
	// persistent members have to be declared public
	// if you use the JDK 1.x versions of db4o
	public String firstName;

	// Using JDK 1.x , every persistent class needs a *public* constructor
	// No constructor at all also works O.K. since the compiler 
	// will create one in this case.
	public Individual(){
	}
}
