1 /*2 * Created on 23.02.20043 *4 * To change the template for this generated file go to5 * Window>Preferences>Java>Code Generation>Code and Comments6 */7 package test.wsee;8 9 /**10 * @wsee.jaxrpc-mapping root-type-qname="TestObject" 11 */12 public class TestObject {13 14 /**15 * @wsee.variable-mapping name="TestField"16 */17 public boolean testField;18 19 /**20 * @wsee.variable-mapping name="TestProperty"21 * @return22 */23 public String getTestProperty() {24 return null;25 }26 27 /**28 * @wsee.variable-mapping name=TestProperty"29 */30 public void setTestProperty(String property) {31 }32 33 }34