KickJava   Java API By Example, From Geeks To Geeks.

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


1 /**
2  * StringArrayTestResponse.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 QNameArrayTestResponse implements java.io.Serializable JavaDoc {
12     private QName JavaDoc[] qnameArray;
13
14     public QNameArrayTestResponse() {
15     }
16
17     public QNameArrayTestResponse(
18             QName JavaDoc[] qnameArray) {
19         this.qnameArray = qnameArray;
20     }
21
22     /**
23      * Gets the stringArray value for this StringArrayTestResponse.
24      *
25      * @return stringArray
26      */

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

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