package com.db4o.test;

public class BiParentUnTypedPublic extends RTest
{
	public Object child;
	
	public void set(int ver){
		child = new BiChildUnTypedPublic();
		((BiChildUnTypedPublic)child).parent = this;
		((BiChildUnTypedPublic)child).name = "set" + ver;
	}
	
	public boolean jdk2(){
		return false;
	}
}
