KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > wsee > TestObject


1 /*
2  * Created on 23.02.2004
3  *
4  * To change the template for this generated file go to
5  * Window>Preferences>Java>Code Generation>Code and Comments
6  */

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     * @return
22     */

23    public String JavaDoc getTestProperty() {
24       return null;
25    }
26    
27    /**
28     * @wsee.variable-mapping name=TestProperty"
29     */

30    public void setTestProperty(String JavaDoc property) {
31    }
32    
33 }
34
Popular Tags