01: package de.schlund.pfixcore.example.webservices;
02:
03: public class WeirdBeanSub extends WeirdBean {
04:
05: int one = 10;
06: int two = 11;
07: public int three = 12;
08:
09: public int getOne() {
10: return one;
11: }
12:
13: public void setOne(int one) {
14: this .one = one;
15: }
16:
17: public int getTwo() {
18: return two;
19: }
20:
21: public void setTwo(int two) {
22: this.two = two;
23: }
24:
25: }
|