1 22 24 package org.jboss.test.webservice.marshalltest; 25 26 public class MarshallEndpoint_echoShortArray_RequestStruct 27 { 28 29 protected short[] arrayOfshort_1; 30 31 public MarshallEndpoint_echoShortArray_RequestStruct() 32 { 33 } 34 35 public MarshallEndpoint_echoShortArray_RequestStruct(short[] arrayOfshort_1) 36 { 37 this.arrayOfshort_1 = arrayOfshort_1; 38 } 39 40 public short[] getArrayOfshort_1() 41 { 42 return arrayOfshort_1; 43 } 44 45 public void setArrayOfshort_1(short[] arrayOfshort_1) 46 { 47 this.arrayOfshort_1 = arrayOfshort_1; 48 } 49 50 } 51 | Popular Tags |