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