01: package de.schlund.pfixcore.beans;
02:
03: import de.schlund.pfixcore.beans.Alias;
04: import de.schlund.pfixcore.beans.ExcludeByDefault;
05: import de.schlund.pfixcore.beans.Include;
06:
07: @ExcludeByDefault
08: public class BeanD {
09:
10: int foo;
11: int bar;
12: int baz;
13: int test;
14:
15: @Include
16: public int getFoo() {
17: return foo;
18: }
19:
20: public void setFoo(int foo) {
21: this .foo = foo;
22: }
23:
24: public int getBar() {
25: return bar;
26: }
27:
28: public void setBar(int bar) {
29: this .bar = bar;
30: }
31:
32: @Include
33: public int getBaz() {
34: return baz;
35: }
36:
37: public void setBaz(int baz) {
38: this .baz = baz;
39: }
40:
41: @Include
42: @Alias("mytest")
43: public int getTest() {
44: return test;
45: }
46:
47: public void setTest(int test) {
48: this.test = test;
49: }
50:
51: }
|