package com.db4o.lib;

final class CollectionObject
{
	CollectionObject i_next;
	Object i_object;

	CollectionObject(CollectionObject a_next, Object a_object){
		i_next = a_next;
		i_object = a_object;
	}

	public CollectionObject _clone(){
		if (i_next != null){
			return new CollectionObject(i_next._clone(), i_object);
		}else{
			return new CollectionObject(null, i_object);
		}
	}

}
