01: package de.schlund.pfixcore.example.webservices;
02:
03: public class BeanImpl {
04:
05: private String text;
06: private int value;
07:
08: public String getText() {
09: return text;
10: }
11:
12: public void setText(String text) {
13: this .text = text;
14: }
15:
16: public int getValue() {
17: return value;
18: }
19:
20: public void setValue(int value) {
21: this.value = value;
22: }
23:
24: }
|