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