01: package de.schlund.pfixcore.beans;
02:
03: import de.schlund.pfixcore.beans.ExcludeByDefault;
04: import de.schlund.pfixcore.beans.Include;
05:
06: @ExcludeByDefault
07: public class BeanB extends BeanA {
08:
09: int my;
10: int hey;
11: int ho;
12:
13: @Include
14: public int getMy() {
15: return my;
16: }
17:
18: public void setMy(int my) {
19: this .my = my;
20: }
21:
22: public int getHey() {
23: return hey;
24: }
25:
26: public void setHey(int hey) {
27: this .hey = hey;
28: }
29:
30: public int getHo() {
31: return ho;
32: }
33:
34: public void setHo(int ho) {
35: this.ho = ho;
36: }
37:
38: }
|