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