Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 4 package com.tctest; 5 6 import java.awt.Color ; 7 8 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 } 57
| Popular Tags
|