/src/com/microsoft/schemas/crm/_2006/webservices/Status.java

http://javamscrm.codeplex.com · Java · 156 lines · 62 code · 36 blank · 58 comment · 0 complexity · bcb75202521349f4a389ec6102b8d0b6 MD5 · raw file

  1. /*
  2. * XML Type: Status
  3. * Namespace: http://schemas.microsoft.com/crm/2006/WebServices
  4. * Java type: com.microsoft.schemas.crm._2006.webservices.Status
  5. *
  6. * Automatically generated - do not modify.
  7. */
  8. package com.microsoft.schemas.crm._2006.webservices;
  9. /**
  10. * An XML Status(@http://schemas.microsoft.com/crm/2006/WebServices).
  11. *
  12. * This is an atomic type that is a restriction of com.microsoft.schemas.crm._2006.webservices.Status.
  13. */
  14. public interface Status extends org.apache.xmlbeans.XmlInt
  15. {
  16. public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
  17. org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(Status.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sD410F7A3293D843D31E344CF6B343266").resolveHandle("status4a8ftype");
  18. /**
  19. * Gets the "IsNull" attribute
  20. */
  21. boolean getIsNull();
  22. /**
  23. * Gets (as xml) the "IsNull" attribute
  24. */
  25. org.apache.xmlbeans.XmlBoolean xgetIsNull();
  26. /**
  27. * True if has "IsNull" attribute
  28. */
  29. boolean isSetIsNull();
  30. /**
  31. * Sets the "IsNull" attribute
  32. */
  33. void setIsNull(boolean isNull);
  34. /**
  35. * Sets (as xml) the "IsNull" attribute
  36. */
  37. void xsetIsNull(org.apache.xmlbeans.XmlBoolean isNull);
  38. /**
  39. * Unsets the "IsNull" attribute
  40. */
  41. void unsetIsNull();
  42. /**
  43. * Gets the "name" attribute
  44. */
  45. java.lang.String getName();
  46. /**
  47. * Gets (as xml) the "name" attribute
  48. */
  49. org.apache.xmlbeans.XmlString xgetName();
  50. /**
  51. * True if has "name" attribute
  52. */
  53. boolean isSetName();
  54. /**
  55. * Sets the "name" attribute
  56. */
  57. void setName(java.lang.String name);
  58. /**
  59. * Sets (as xml) the "name" attribute
  60. */
  61. void xsetName(org.apache.xmlbeans.XmlString name);
  62. /**
  63. * Unsets the "name" attribute
  64. */
  65. void unsetName();
  66. /**
  67. * A factory class with static methods for creating instances
  68. * of this type.
  69. */
  70. public static final class Factory
  71. {
  72. public static com.microsoft.schemas.crm._2006.webservices.Status newInstance() {
  73. return (com.microsoft.schemas.crm._2006.webservices.Status) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
  74. public static com.microsoft.schemas.crm._2006.webservices.Status newInstance(org.apache.xmlbeans.XmlOptions options) {
  75. return (com.microsoft.schemas.crm._2006.webservices.Status) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
  76. /** @param xmlAsString the string value to parse */
  77. public static com.microsoft.schemas.crm._2006.webservices.Status parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
  78. return (com.microsoft.schemas.crm._2006.webservices.Status) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
  79. public static com.microsoft.schemas.crm._2006.webservices.Status parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
  80. return (com.microsoft.schemas.crm._2006.webservices.Status) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
  81. /** @param file the file from which to load an xml document */
  82. public static com.microsoft.schemas.crm._2006.webservices.Status parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
  83. return (com.microsoft.schemas.crm._2006.webservices.Status) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
  84. public static com.microsoft.schemas.crm._2006.webservices.Status parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
  85. return (com.microsoft.schemas.crm._2006.webservices.Status) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
  86. public static com.microsoft.schemas.crm._2006.webservices.Status parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
  87. return (com.microsoft.schemas.crm._2006.webservices.Status) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
  88. public static com.microsoft.schemas.crm._2006.webservices.Status parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
  89. return (com.microsoft.schemas.crm._2006.webservices.Status) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
  90. public static com.microsoft.schemas.crm._2006.webservices.Status parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
  91. return (com.microsoft.schemas.crm._2006.webservices.Status) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
  92. public static com.microsoft.schemas.crm._2006.webservices.Status parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
  93. return (com.microsoft.schemas.crm._2006.webservices.Status) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
  94. public static com.microsoft.schemas.crm._2006.webservices.Status parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
  95. return (com.microsoft.schemas.crm._2006.webservices.Status) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
  96. public static com.microsoft.schemas.crm._2006.webservices.Status parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
  97. return (com.microsoft.schemas.crm._2006.webservices.Status) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
  98. public static com.microsoft.schemas.crm._2006.webservices.Status parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
  99. return (com.microsoft.schemas.crm._2006.webservices.Status) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
  100. public static com.microsoft.schemas.crm._2006.webservices.Status parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
  101. return (com.microsoft.schemas.crm._2006.webservices.Status) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
  102. public static com.microsoft.schemas.crm._2006.webservices.Status parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
  103. return (com.microsoft.schemas.crm._2006.webservices.Status) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
  104. public static com.microsoft.schemas.crm._2006.webservices.Status parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
  105. return (com.microsoft.schemas.crm._2006.webservices.Status) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
  106. /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
  107. public static com.microsoft.schemas.crm._2006.webservices.Status parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
  108. return (com.microsoft.schemas.crm._2006.webservices.Status) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
  109. /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
  110. public static com.microsoft.schemas.crm._2006.webservices.Status parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
  111. return (com.microsoft.schemas.crm._2006.webservices.Status) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
  112. /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
  113. public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
  114. return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
  115. /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
  116. public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
  117. return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
  118. private Factory() { } // No instance of this class allowed
  119. }
  120. }