KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > wsdl > marshall3 > types > QNameArrayTest


1 /**
2  * StringArrayTest.java
3  *
4  * This file was auto-generated from WSDL
5  * by the Apache Axis 1.2RC3 Apr 29, 2005 (10:05:23 EDT) WSDL2Java emitter.
6  */

7 package test.wsdl.marshall3.types;
8
9 import javax.xml.namespace.QName JavaDoc;
10
11 public class QNameArrayTest implements java.io.Serializable JavaDoc {
12     private QName JavaDoc[] qnameArray;
13
14     public QNameArrayTest() {
15     }
16
17     public QNameArrayTest(QName JavaDoc[] qnameArray) {
18         this.qnameArray = qnameArray;
19     }
20
21     /**
22      * Gets the stringArray value for this StringArrayTest.
23      *
24      * @return stringArray
25      */

26     public QName JavaDoc[] getQnameArray() {
27         return qnameArray;
28     }
29
30     /**
31      * Sets the stringArray value for this StringArrayTest.
32      *
33      * @param stringArray
34      */

35     public void setQnameArray(QName JavaDoc[] qnameArray) {
36         this.qnameArray = qnameArray;
37     }
38 }
39
Popular Tags