1 7 package test.wsdl.marshall3.types; 8 9 public class ShortArrayTestResponse implements java.io.Serializable { 10 private short[] shortArray; 11 12 public ShortArrayTestResponse() { 13 } 14 15 public ShortArrayTestResponse( 16 short[] shortArray) { 17 this.shortArray = shortArray; 18 } 19 20 25 public short[] getShortArray() { 26 return shortArray; 27 } 28 29 34 public void setShortArray(short[] shortArray) { 35 this.shortArray = shortArray; 36 } 37 } 38 | Popular Tags |