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