KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > webservice > jbws718 > ArrayOfProperty


1 // This class was generated by the JAXRPC SI, do not edit.
2
// Contents subject to change without notice.
3
// JAX-RPC Standard Implementation (1.1.3, build R1)
4
// Generated source version: 1.1.3
5

6 package org.jboss.test.webservice.jbws718;
7
8
9 public class ArrayOfProperty {
10     protected org.jboss.test.webservice.jbws718.Property[] property;
11     
12     public ArrayOfProperty() {
13     }
14     
15     public ArrayOfProperty(org.jboss.test.webservice.jbws718.Property[] property) {
16         this.property = property;
17     }
18     
19     public org.jboss.test.webservice.jbws718.Property[] getProperty() {
20         return property;
21     }
22     
23     public void setProperty(org.jboss.test.webservice.jbws718.Property[] property) {
24         this.property = property;
25     }
26 }
27
Popular Tags