01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tctest;
05:
06: import java.awt.Color;
07:
08: /*
09: * This class is used for testing non-instrumented objects.
10: */
11: public class NonInstrumentedTestObject {
12: private long[] longArray = new long[2];
13: private Object[] objectArray = new Object[2];
14: private long longValue = Long.MIN_VALUE;
15: private Color color = new Color(100, true);
16:
17: public NonInstrumentedTestObject() {
18: super ();
19: }
20:
21: public NonInstrumentedTestObject(long longValue) {
22: this .longValue = longValue;
23: }
24:
25: public long getLongValue() {
26: return longValue;
27: }
28:
29: public void setLongValue(long longValue) {
30: this .longValue = longValue;
31: }
32:
33: public Color getColor() {
34: return color;
35: }
36:
37: public void setColor(Color color) {
38: this .color = color;
39: }
40:
41: public long[] getLongArray() {
42: return longArray;
43: }
44:
45: public void setLongArray(long[] longArray) {
46: this .longArray = longArray;
47: }
48:
49: public Object[] getObjectArray() {
50: return objectArray;
51: }
52:
53: public void setObjectArray(Object[] objectArray) {
54: this.objectArray = objectArray;
55: }
56: }
|