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