1 // This class was generated by the JAXRPC SI, do not edit.2 // Contents subject to change without notice.3 // JAX-RPC Standard Implementation (1.1.3, build R1)4 // Generated source version: 1.1.35 6 package org.jboss.test.webservice.jbws775;7 8 9 public class TDocument {10 protected org.jboss.test.webservice.jbws775.TDocumentHead head;11 protected org.jboss.test.webservice.jbws775.TDocumentBody body;12 13 public TDocument() {14 }15 16 public TDocument(org.jboss.test.webservice.jbws775.TDocumentHead head, org.jboss.test.webservice.jbws775.TDocumentBody body) {17 this.head = head;18 this.body = body;19 }20 21 public org.jboss.test.webservice.jbws775.TDocumentHead getHead() {22 return head;23 }24 25 public void setHead(org.jboss.test.webservice.jbws775.TDocumentHead head) {26 this.head = head;27 }28 29 public org.jboss.test.webservice.jbws775.TDocumentBody getBody() {30 return body;31 }32 33 public void setBody(org.jboss.test.webservice.jbws775.TDocumentBody body) {34 this.body = body;35 }36 }37