Test2

Test2.java
01/* Copyright (C) 2004 - 2007 db4objects Inc. http://www.db4o.com */ 02 03package com.db4odoc.selectivepersistence; 04 05public class Test2 { 06 private Test1 test1; 07 08 private String name; 09 10 private NotStorable transientClass; 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}