Samples JDK
PingMeResponseDocumentImpl.java
1 /*
2  * An XML document type.
3  * Localname: pingMeResponse
4  * Namespace: http://apache.org/hello_world_soap_http/types
5  * Java type: org.apache.helloWorldSoapHttp.types.PingMeResponseDocument
6  *
7  * Automatically generated - do not modify.
8  */
9 package org.apache.helloWorldSoapHttp.types.impl;
10 /**
11  * A document containing one pingMeResponse(@http://apache.org/hello_world_soap_http/types) element.
12  *
13  * This is a complex type.
14  */
15 public class PingMeResponseDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.helloWorldSoapHttp.types.PingMeResponseDocument
16 {
17  private static final long serialVersionUID = 1L;
18 
19  public PingMeResponseDocumentImpl(org.apache.xmlbeans.SchemaType sType)
20  {
21  super(sType);
22  }
23 
24  private static final javax.xml.namespace.QName PINGMERESPONSE$0 =
25  new javax.xml.namespace.QName("http://apache.org/hello_world_soap_http/types", "pingMeResponse");
26 
27 
28  /**
29  * Gets the "pingMeResponse" element
30  */
32  {
33  synchronized (monitor())
34  {
35  check_orphaned();
37  target = (org.apache.helloWorldSoapHttp.types.PingMeResponseDocument.PingMeResponse)get_store().find_element_user(PINGMERESPONSE$0, 0);
38  if (target == null)
39  {
40  return null;
41  }
42  return target;
43  }
44  }
45 
46  /**
47  * Sets the "pingMeResponse" element
48  */
50  {
51  generatedSetterHelperImpl(pingMeResponse, PINGMERESPONSE$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
52  }
53 
54  /**
55  * Appends and returns a new empty "pingMeResponse" element
56  */
58  {
59  synchronized (monitor())
60  {
61  check_orphaned();
63  target = (org.apache.helloWorldSoapHttp.types.PingMeResponseDocument.PingMeResponse)get_store().add_element_user(PINGMERESPONSE$0);
64  return target;
65  }
66  }
67  /**
68  * An XML pingMeResponse(@http://apache.org/hello_world_soap_http/types).
69  *
70  * This is a complex type.
71  */
72  public static class PingMeResponseImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.helloWorldSoapHttp.types.PingMeResponseDocument.PingMeResponse
73  {
74  private static final long serialVersionUID = 1L;
75 
76  public PingMeResponseImpl(org.apache.xmlbeans.SchemaType sType)
77  {
78  super(sType);
79  }
80 
81 
82  }
83 }
void setPingMeResponse(org.apache.helloWorldSoapHttp.types.PingMeResponseDocument.PingMeResponse pingMeResponse)
org.apache.helloWorldSoapHttp.types.PingMeResponseDocument.PingMeResponse addNewPingMeResponse()
org.apache.helloWorldSoapHttp.types.PingMeResponseDocument.PingMeResponse getPingMeResponse()