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