KickJava   Java API By Example, From Geeks To Geeks.

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


1 /**
2  * ShortArrayTestResponse.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 public class ShortArrayTestResponse implements java.io.Serializable JavaDoc {
10     private short[] shortArray;
11
12     public ShortArrayTestResponse() {
13     }
14
15     public ShortArrayTestResponse(
16             short[] shortArray) {
17         this.shortArray = shortArray;
18     }
19
20     /**
21      * Gets the shortArray value for this ShortArrayTestResponse.
22      *
23      * @return shortArray
24      */

25     public short[] getShortArray() {
26         return shortArray;
27     }
28
29     /**
30      * Sets the shortArray value for this ShortArrayTestResponse.
31      *
32      * @param shortArray
33      */

34     public void setShortArray(short[] shortArray) {
35         this.shortArray = shortArray;
36     }
37 }
38
Popular Tags