01: /* Copyright (C) 2004 - 2007 db4objects Inc. http://www.db4o.com
02:
03: This file is part of the db4o open source object database.
04:
05: db4o is free software; you can redistribute it and/or modify it under
06: the terms of version 2 of the GNU General Public License as published
07: by the Free Software Foundation and as clarified by db4objects' GPL
08: interpretation policy, available at
09: http://www.db4o.com/about/company/legalpolicies/gplinterpretation/
10: Alternatively you can write to db4objects, Inc., 1900 S Norfolk Street,
11: Suite 350, San Mateo, CA 94403, USA.
12:
13: db4o is distributed in the hope that it will be useful, but WITHOUT ANY
14: WARRANTY; without even the implied warranty of MERCHANTABILITY or
15: FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16: for more details.
17:
18: You should have received a copy of the GNU General Public License along
19: with this program; if not, write to the Free Software Foundation, Inc.,
20: 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
21: package com.db4o.test;
22:
23: import com.db4o.*;
24: import com.db4o.test.types.*;
25:
26: public class RenTwo implements InterfaceHelper, RTestable {
27: public String s1;
28: public String s2;
29:
30: public void compare(ObjectContainer con, Object obj, int ver) {
31: Compare.compare(con, set(newInstance(), ver), obj, "", null);
32: }
33:
34: public boolean equals(Object obj) {
35: return (obj != null && obj instanceof RenTwo && s1 != null
36: && s2 != null && s1.equals(((RenTwo) obj).s1) && s2
37: .equals(((RenTwo) obj).s2));
38: }
39:
40: public Object newInstance() {
41: return new RenTwo();
42: }
43:
44: public Object set(Object obj, int ver) {
45: ((RenTwo) obj).set(ver);
46: return obj;
47: }
48:
49: public void set(int ver) {
50: if (ver == 1) {
51: s1 = "One";
52: s2 = "One";
53: } else {
54: s1 = "Two";
55: s2 = "Two";
56: }
57: }
58:
59: public boolean jdk2() {
60: return false;
61: }
62:
63: public boolean ver3() {
64: return false;
65: }
66:
67: }
|