package com.db4o.samples;

public class Person
{
	// persistent members have to be declared public
	// if you use the JDK 1.x versions of db4o
	public String name;
	public Address[] addresses;
	
	
	// 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 Person(){
	}
}
