Test2

Test2.java
01/* Copyright (C) 2004 - 2006 db4objects Inc. http://www.db4o.com */ 02 03package com.db4odoc.selpersist; 04 05 06public class Test2 { 07 private Test1 test1; 08 private String name; 09 private NotStorable transientClass; 10 11 12 public Test2(String name, NotStorable transientClass, Test1 test1){ 13 this.test1 = test1; 14 this.name = name; 15 this.transientClass = transientClass; 16 } 17 18 public String toString(){ 19 return name + "/" + transientClass +"; test1: " + test1; 20 } 21}