01: /**************************************************************************************
02: * Copyright (c) Jonas BonŽr, Alexandre Vasseur. All rights reserved. *
03: * http://aspectwerkz.codehaus.org *
04: * ---------------------------------------------------------------------------------- *
05: * The software in this package is published under the terms of the LGPL license *
06: * a copy of which has been included with this distribution in the license.txt file. *
07: **************************************************************************************/package test.fieldsetbug;
08:
09: public class TargetClass {
10:
11: public int publicIntField;
12: public char publicCharField;
13: public long publicLongField;
14: public double publicDoubleField;
15:
16: public TargetClass() {
17: publicIntField = 1;
18: publicCharField = 'a';
19: publicLongField = 1L;
20: publicDoubleField = 1D;
21: }
22:
23: public TargetClass(int value) {
24: publicIntField = value;
25: }
26:
27: public TargetClass(char value) {
28: publicCharField = value;
29: }
30:
31: public TargetClass(long value) {
32: publicLongField = value;
33: }
34:
35: public TargetClass(double value) {
36: publicDoubleField = value;
37: }
38: }
|