You are viewing a plain text version of this content. The canonical link for it is here.
Posted to muse-dev@ws.apache.org by sc...@apache.org on 2005/04/01 17:19:52 UTC

svn commit: r159692 [2/3] - in incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src: com/ com/dell/ com/dell/wsdm/ com/dell/wsdm/demos/ com/dell/wsdm/demos/interop/ com/dell/wsdm/demos/interop/x2005/ com/dell/wsdm/demos/interop/x2005/x04/ com/dell/wsdm/demos/interop/x2005/x04/impl/ org/ rim/ schema/

Added: incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/SerialNumberDocument.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/SerialNumberDocument.java?view=auto&rev=159692
==============================================================================
--- incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/SerialNumberDocument.java (added)
+++ incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/SerialNumberDocument.java Fri Apr  1 07:19:48 2005
@@ -0,0 +1,104 @@
+/*
+ * An XML document type.
+ * Localname: SerialNumber
+ * Namespace: http://dell.com/wsdm/demos/interop/2005/04
+ * Java type: com.dell.wsdm.demos.interop.x2005.x04.SerialNumberDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package com.dell.wsdm.demos.interop.x2005.x04;
+
+
+/**
+ * A document containing one SerialNumber(@http://dell.com/wsdm/demos/interop/2005/04) element.
+ *
+ * This is a complex type.
+ */
+public interface SerialNumberDocument extends org.apache.xmlbeans.XmlObject
+{
+    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)schema.system.s42177756F9B347E4F9BF92C95B133A82.TypeSystemHolder.typeSystem.resolveHandle("serialnumberdc08doctype");
+    
+    /**
+     * Gets the "SerialNumber" element
+     */
+    java.lang.String getSerialNumber();
+    
+    /**
+     * Gets (as xml) the "SerialNumber" element
+     */
+    org.apache.xmlbeans.XmlString xgetSerialNumber();
+    
+    /**
+     * Sets the "SerialNumber" element
+     */
+    void setSerialNumber(java.lang.String serialNumber);
+    
+    /**
+     * Sets (as xml) the "SerialNumber" element
+     */
+    void xsetSerialNumber(org.apache.xmlbeans.XmlString serialNumber);
+    
+    /**
+     * A factory class with static methods for creating instances
+     * of this type.
+     */
+    
+    public static final class Factory
+    {
+        public static com.dell.wsdm.demos.interop.x2005.x04.SerialNumberDocument newInstance() {
+          return (com.dell.wsdm.demos.interop.x2005.x04.SerialNumberDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
+        
+        public static com.dell.wsdm.demos.interop.x2005.x04.SerialNumberDocument newInstance(org.apache.xmlbeans.XmlOptions options) {
+          return (com.dell.wsdm.demos.interop.x2005.x04.SerialNumberDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
+        
+        public static com.dell.wsdm.demos.interop.x2005.x04.SerialNumberDocument parse(java.lang.String s) throws org.apache.xmlbeans.XmlException {
+          return (com.dell.wsdm.demos.interop.x2005.x04.SerialNumberDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( s, type, null ); }
+        
+        public static com.dell.wsdm.demos.interop.x2005.x04.SerialNumberDocument parse(java.lang.String s, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (com.dell.wsdm.demos.interop.x2005.x04.SerialNumberDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( s, type, options ); }
+        
+        public static com.dell.wsdm.demos.interop.x2005.x04.SerialNumberDocument parse(java.io.File f) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (com.dell.wsdm.demos.interop.x2005.x04.SerialNumberDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( f, type, null ); }
+        
+        public static com.dell.wsdm.demos.interop.x2005.x04.SerialNumberDocument parse(java.io.File f, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (com.dell.wsdm.demos.interop.x2005.x04.SerialNumberDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( f, type, options ); }
+        
+        public static com.dell.wsdm.demos.interop.x2005.x04.SerialNumberDocument parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (com.dell.wsdm.demos.interop.x2005.x04.SerialNumberDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
+        
+        public static com.dell.wsdm.demos.interop.x2005.x04.SerialNumberDocument parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (com.dell.wsdm.demos.interop.x2005.x04.SerialNumberDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
+        
+        public static com.dell.wsdm.demos.interop.x2005.x04.SerialNumberDocument parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (com.dell.wsdm.demos.interop.x2005.x04.SerialNumberDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
+        
+        public static com.dell.wsdm.demos.interop.x2005.x04.SerialNumberDocument parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (com.dell.wsdm.demos.interop.x2005.x04.SerialNumberDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
+        
+        public static com.dell.wsdm.demos.interop.x2005.x04.SerialNumberDocument parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (com.dell.wsdm.demos.interop.x2005.x04.SerialNumberDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
+        
+        public static com.dell.wsdm.demos.interop.x2005.x04.SerialNumberDocument parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (com.dell.wsdm.demos.interop.x2005.x04.SerialNumberDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
+        
+        public static com.dell.wsdm.demos.interop.x2005.x04.SerialNumberDocument parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
+          return (com.dell.wsdm.demos.interop.x2005.x04.SerialNumberDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
+        
+        public static com.dell.wsdm.demos.interop.x2005.x04.SerialNumberDocument parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (com.dell.wsdm.demos.interop.x2005.x04.SerialNumberDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
+        
+        public static com.dell.wsdm.demos.interop.x2005.x04.SerialNumberDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return (com.dell.wsdm.demos.interop.x2005.x04.SerialNumberDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
+        
+        public static com.dell.wsdm.demos.interop.x2005.x04.SerialNumberDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return (com.dell.wsdm.demos.interop.x2005.x04.SerialNumberDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
+        
+        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 {
+          return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
+        
+        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 {
+          return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
+        
+        private Factory() { } // No instance of this class allowed
+    }
+}

Added: incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/SysContactDocument.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/SysContactDocument.java?view=auto&rev=159692
==============================================================================
--- incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/SysContactDocument.java (added)
+++ incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/SysContactDocument.java Fri Apr  1 07:19:48 2005
@@ -0,0 +1,104 @@
+/*
+ * An XML document type.
+ * Localname: sysContact
+ * Namespace: http://dell.com/wsdm/demos/interop/2005/04
+ * Java type: com.dell.wsdm.demos.interop.x2005.x04.SysContactDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package com.dell.wsdm.demos.interop.x2005.x04;
+
+
+/**
+ * A document containing one sysContact(@http://dell.com/wsdm/demos/interop/2005/04) element.
+ *
+ * This is a complex type.
+ */
+public interface SysContactDocument extends org.apache.xmlbeans.XmlObject
+{
+    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)schema.system.s42177756F9B347E4F9BF92C95B133A82.TypeSystemHolder.typeSystem.resolveHandle("syscontactfdf2doctype");
+    
+    /**
+     * Gets the "sysContact" element
+     */
+    java.lang.String getSysContact();
+    
+    /**
+     * Gets (as xml) the "sysContact" element
+     */
+    org.apache.xmlbeans.XmlString xgetSysContact();
+    
+    /**
+     * Sets the "sysContact" element
+     */
+    void setSysContact(java.lang.String sysContact);
+    
+    /**
+     * Sets (as xml) the "sysContact" element
+     */
+    void xsetSysContact(org.apache.xmlbeans.XmlString sysContact);
+    
+    /**
+     * A factory class with static methods for creating instances
+     * of this type.
+     */
+    
+    public static final class Factory
+    {
+        public static com.dell.wsdm.demos.interop.x2005.x04.SysContactDocument newInstance() {
+          return (com.dell.wsdm.demos.interop.x2005.x04.SysContactDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
+        
+        public static com.dell.wsdm.demos.interop.x2005.x04.SysContactDocument newInstance(org.apache.xmlbeans.XmlOptions options) {
+          return (com.dell.wsdm.demos.interop.x2005.x04.SysContactDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
+        
+        public static com.dell.wsdm.demos.interop.x2005.x04.SysContactDocument parse(java.lang.String s) throws org.apache.xmlbeans.XmlException {
+          return (com.dell.wsdm.demos.interop.x2005.x04.SysContactDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( s, type, null ); }
+        
+        public static com.dell.wsdm.demos.interop.x2005.x04.SysContactDocument parse(java.lang.String s, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (com.dell.wsdm.demos.interop.x2005.x04.SysContactDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( s, type, options ); }
+        
+        public static com.dell.wsdm.demos.interop.x2005.x04.SysContactDocument parse(java.io.File f) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (com.dell.wsdm.demos.interop.x2005.x04.SysContactDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( f, type, null ); }
+        
+        public static com.dell.wsdm.demos.interop.x2005.x04.SysContactDocument parse(java.io.File f, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (com.dell.wsdm.demos.interop.x2005.x04.SysContactDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( f, type, options ); }
+        
+        public static com.dell.wsdm.demos.interop.x2005.x04.SysContactDocument parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (com.dell.wsdm.demos.interop.x2005.x04.SysContactDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
+        
+        public static com.dell.wsdm.demos.interop.x2005.x04.SysContactDocument parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (com.dell.wsdm.demos.interop.x2005.x04.SysContactDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
+        
+        public static com.dell.wsdm.demos.interop.x2005.x04.SysContactDocument parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (com.dell.wsdm.demos.interop.x2005.x04.SysContactDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
+        
+        public static com.dell.wsdm.demos.interop.x2005.x04.SysContactDocument parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (com.dell.wsdm.demos.interop.x2005.x04.SysContactDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
+        
+        public static com.dell.wsdm.demos.interop.x2005.x04.SysContactDocument parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (com.dell.wsdm.demos.interop.x2005.x04.SysContactDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
+        
+        public static com.dell.wsdm.demos.interop.x2005.x04.SysContactDocument parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (com.dell.wsdm.demos.interop.x2005.x04.SysContactDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
+        
+        public static com.dell.wsdm.demos.interop.x2005.x04.SysContactDocument parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
+          return (com.dell.wsdm.demos.interop.x2005.x04.SysContactDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
+        
+        public static com.dell.wsdm.demos.interop.x2005.x04.SysContactDocument parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (com.dell.wsdm.demos.interop.x2005.x04.SysContactDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
+        
+        public static com.dell.wsdm.demos.interop.x2005.x04.SysContactDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return (com.dell.wsdm.demos.interop.x2005.x04.SysContactDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
+        
+        public static com.dell.wsdm.demos.interop.x2005.x04.SysContactDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return (com.dell.wsdm.demos.interop.x2005.x04.SysContactDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
+        
+        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 {
+          return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
+        
+        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 {
+          return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
+        
+        private Factory() { } // No instance of this class allowed
+    }
+}

Added: incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/AttentionLedOnDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/AttentionLedOnDocumentImpl.java?view=auto&rev=159692
==============================================================================
--- incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/AttentionLedOnDocumentImpl.java (added)
+++ incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/AttentionLedOnDocumentImpl.java Fri Apr  1 07:19:48 2005
@@ -0,0 +1,94 @@
+/*
+ * An XML document type.
+ * Localname: AttentionLedOn
+ * Namespace: http://dell.com/wsdm/demos/interop/2005/04
+ * Java type: com.dell.wsdm.demos.interop.x2005.x04.AttentionLedOnDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package com.dell.wsdm.demos.interop.x2005.x04.impl;
+/**
+ * A document containing one AttentionLedOn(@http://dell.com/wsdm/demos/interop/2005/04) element.
+ *
+ * This is a complex type.
+ */
+public class AttentionLedOnDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements com.dell.wsdm.demos.interop.x2005.x04.AttentionLedOnDocument
+{
+    
+    public AttentionLedOnDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName ATTENTIONLEDON$0 = 
+        new javax.xml.namespace.QName("http://dell.com/wsdm/demos/interop/2005/04", "AttentionLedOn");
+    
+    
+    /**
+     * Gets the "AttentionLedOn" element
+     */
+    public boolean getAttentionLedOn()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(ATTENTIONLEDON$0, 0);
+            if (target == null)
+            {
+                return false;
+            }
+            return target.getBooleanValue();
+        }
+    }
+    
+    /**
+     * Gets (as xml) the "AttentionLedOn" element
+     */
+    public org.apache.xmlbeans.XmlBoolean xgetAttentionLedOn()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlBoolean target = null;
+            target = (org.apache.xmlbeans.XmlBoolean)get_store().find_element_user(ATTENTIONLEDON$0, 0);
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "AttentionLedOn" element
+     */
+    public void setAttentionLedOn(boolean attentionLedOn)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(ATTENTIONLEDON$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(ATTENTIONLEDON$0);
+            }
+            target.setBooleanValue(attentionLedOn);
+        }
+    }
+    
+    /**
+     * Sets (as xml) the "AttentionLedOn" element
+     */
+    public void xsetAttentionLedOn(org.apache.xmlbeans.XmlBoolean attentionLedOn)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlBoolean target = null;
+            target = (org.apache.xmlbeans.XmlBoolean)get_store().find_element_user(ATTENTIONLEDON$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.XmlBoolean)get_store().add_element_user(ATTENTIONLEDON$0);
+            }
+            target.set(attentionLedOn);
+        }
+    }
+}

Added: incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/CoverOpenDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/CoverOpenDocumentImpl.java?view=auto&rev=159692
==============================================================================
--- incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/CoverOpenDocumentImpl.java (added)
+++ incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/CoverOpenDocumentImpl.java Fri Apr  1 07:19:48 2005
@@ -0,0 +1,94 @@
+/*
+ * An XML document type.
+ * Localname: CoverOpen
+ * Namespace: http://dell.com/wsdm/demos/interop/2005/04
+ * Java type: com.dell.wsdm.demos.interop.x2005.x04.CoverOpenDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package com.dell.wsdm.demos.interop.x2005.x04.impl;
+/**
+ * A document containing one CoverOpen(@http://dell.com/wsdm/demos/interop/2005/04) element.
+ *
+ * This is a complex type.
+ */
+public class CoverOpenDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements com.dell.wsdm.demos.interop.x2005.x04.CoverOpenDocument
+{
+    
+    public CoverOpenDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName COVEROPEN$0 = 
+        new javax.xml.namespace.QName("http://dell.com/wsdm/demos/interop/2005/04", "CoverOpen");
+    
+    
+    /**
+     * Gets the "CoverOpen" element
+     */
+    public boolean getCoverOpen()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(COVEROPEN$0, 0);
+            if (target == null)
+            {
+                return false;
+            }
+            return target.getBooleanValue();
+        }
+    }
+    
+    /**
+     * Gets (as xml) the "CoverOpen" element
+     */
+    public org.apache.xmlbeans.XmlBoolean xgetCoverOpen()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlBoolean target = null;
+            target = (org.apache.xmlbeans.XmlBoolean)get_store().find_element_user(COVEROPEN$0, 0);
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "CoverOpen" element
+     */
+    public void setCoverOpen(boolean coverOpen)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(COVEROPEN$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(COVEROPEN$0);
+            }
+            target.setBooleanValue(coverOpen);
+        }
+    }
+    
+    /**
+     * Sets (as xml) the "CoverOpen" element
+     */
+    public void xsetCoverOpen(org.apache.xmlbeans.XmlBoolean coverOpen)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlBoolean target = null;
+            target = (org.apache.xmlbeans.XmlBoolean)get_store().find_element_user(COVEROPEN$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.XmlBoolean)get_store().add_element_user(COVEROPEN$0);
+            }
+            target.set(coverOpen);
+        }
+    }
+}

Added: incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/CpuUsageDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/CpuUsageDocumentImpl.java?view=auto&rev=159692
==============================================================================
--- incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/CpuUsageDocumentImpl.java (added)
+++ incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/CpuUsageDocumentImpl.java Fri Apr  1 07:19:48 2005
@@ -0,0 +1,76 @@
+/*
+ * An XML document type.
+ * Localname: CpuUsage
+ * Namespace: http://dell.com/wsdm/demos/interop/2005/04
+ * Java type: com.dell.wsdm.demos.interop.x2005.x04.CpuUsageDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package com.dell.wsdm.demos.interop.x2005.x04.impl;
+/**
+ * A document containing one CpuUsage(@http://dell.com/wsdm/demos/interop/2005/04) element.
+ *
+ * This is a complex type.
+ */
+public class CpuUsageDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements com.dell.wsdm.demos.interop.x2005.x04.CpuUsageDocument
+{
+    
+    public CpuUsageDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName CPUUSAGE$0 = 
+        new javax.xml.namespace.QName("http://dell.com/wsdm/demos/interop/2005/04", "CpuUsage");
+    
+    
+    /**
+     * Gets the "CpuUsage" element
+     */
+    public org.apache.xmlbeans.XmlObject getCpuUsage()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlObject target = null;
+            target = (org.apache.xmlbeans.XmlObject)get_store().find_element_user(CPUUSAGE$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "CpuUsage" element
+     */
+    public void setCpuUsage(org.apache.xmlbeans.XmlObject cpuUsage)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlObject target = null;
+            target = (org.apache.xmlbeans.XmlObject)get_store().find_element_user(CPUUSAGE$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.XmlObject)get_store().add_element_user(CPUUSAGE$0);
+            }
+            target.set(cpuUsage);
+        }
+    }
+    
+    /**
+     * Appends and returns a new empty "CpuUsage" element
+     */
+    public org.apache.xmlbeans.XmlObject addNewCpuUsage()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlObject target = null;
+            target = (org.apache.xmlbeans.XmlObject)get_store().add_element_user(CPUUSAGE$0);
+            return target;
+        }
+    }
+}

Added: incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/IPMIServerPropertiesDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/IPMIServerPropertiesDocumentImpl.java?view=auto&rev=159692
==============================================================================
--- incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/IPMIServerPropertiesDocumentImpl.java (added)
+++ incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/IPMIServerPropertiesDocumentImpl.java Fri Apr  1 07:19:48 2005
@@ -0,0 +1,931 @@
+/*
+ * An XML document type.
+ * Localname: IPMIServerProperties
+ * Namespace: http://dell.com/wsdm/demos/interop/2005/04
+ * Java type: com.dell.wsdm.demos.interop.x2005.x04.IPMIServerPropertiesDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package com.dell.wsdm.demos.interop.x2005.x04.impl;
+/**
+ * A document containing one IPMIServerProperties(@http://dell.com/wsdm/demos/interop/2005/04) element.
+ *
+ * This is a complex type.
+ */
+public class IPMIServerPropertiesDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements com.dell.wsdm.demos.interop.x2005.x04.IPMIServerPropertiesDocument
+{
+    
+    public IPMIServerPropertiesDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName IPMISERVERPROPERTIES$0 = 
+        new javax.xml.namespace.QName("http://dell.com/wsdm/demos/interop/2005/04", "IPMIServerProperties");
+    
+    
+    /**
+     * Gets the "IPMIServerProperties" element
+     */
+    public com.dell.wsdm.demos.interop.x2005.x04.IPMIServerPropertiesDocument.IPMIServerProperties getIPMIServerProperties()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            com.dell.wsdm.demos.interop.x2005.x04.IPMIServerPropertiesDocument.IPMIServerProperties target = null;
+            target = (com.dell.wsdm.demos.interop.x2005.x04.IPMIServerPropertiesDocument.IPMIServerProperties)get_store().find_element_user(IPMISERVERPROPERTIES$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "IPMIServerProperties" element
+     */
+    public void setIPMIServerProperties(com.dell.wsdm.demos.interop.x2005.x04.IPMIServerPropertiesDocument.IPMIServerProperties ipmiServerProperties)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            com.dell.wsdm.demos.interop.x2005.x04.IPMIServerPropertiesDocument.IPMIServerProperties target = null;
+            target = (com.dell.wsdm.demos.interop.x2005.x04.IPMIServerPropertiesDocument.IPMIServerProperties)get_store().find_element_user(IPMISERVERPROPERTIES$0, 0);
+            if (target == null)
+            {
+                target = (com.dell.wsdm.demos.interop.x2005.x04.IPMIServerPropertiesDocument.IPMIServerProperties)get_store().add_element_user(IPMISERVERPROPERTIES$0);
+            }
+            target.set(ipmiServerProperties);
+        }
+    }
+    
+    /**
+     * Appends and returns a new empty "IPMIServerProperties" element
+     */
+    public com.dell.wsdm.demos.interop.x2005.x04.IPMIServerPropertiesDocument.IPMIServerProperties addNewIPMIServerProperties()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            com.dell.wsdm.demos.interop.x2005.x04.IPMIServerPropertiesDocument.IPMIServerProperties target = null;
+            target = (com.dell.wsdm.demos.interop.x2005.x04.IPMIServerPropertiesDocument.IPMIServerProperties)get_store().add_element_user(IPMISERVERPROPERTIES$0);
+            return target;
+        }
+    }
+    /**
+     * An XML IPMIServerProperties(@http://dell.com/wsdm/demos/interop/2005/04).
+     *
+     * This is a complex type.
+     */
+    public static class IPMIServerPropertiesImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements com.dell.wsdm.demos.interop.x2005.x04.IPMIServerPropertiesDocument.IPMIServerProperties
+    {
+        
+        public IPMIServerPropertiesImpl(org.apache.xmlbeans.SchemaType sType)
+        {
+            super(sType);
+        }
+        
+        private static final javax.xml.namespace.QName RESOURCEID$0 = 
+            new javax.xml.namespace.QName("http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part1.xsd", "ResourceId");
+        private static final javax.xml.namespace.QName MANAGEABILITYCAPABILITY$2 = 
+            new javax.xml.namespace.QName("http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part1.xsd", "ManageabilityCapability");
+        private static final javax.xml.namespace.QName OPERATIONALSTATUS$4 = 
+            new javax.xml.namespace.QName("http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part2.xsd", "OperationalStatus");
+        private static final javax.xml.namespace.QName TOPIC$6 = 
+            new javax.xml.namespace.QName("http://docs.oasis-open.org/wsn/2004/06/wsn-WS-BaseNotification-1.2-draft-01.xsd", "Topic");
+        private static final javax.xml.namespace.QName FIXEDTOPICSET$8 = 
+            new javax.xml.namespace.QName("http://docs.oasis-open.org/wsn/2004/06/wsn-WS-BaseNotification-1.2-draft-01.xsd", "FixedTopicSet");
+        private static final javax.xml.namespace.QName TOPICEXPRESSIONDIALECTS$10 = 
+            new javax.xml.namespace.QName("http://docs.oasis-open.org/wsn/2004/06/wsn-WS-BaseNotification-1.2-draft-01.xsd", "TopicExpressionDialects");
+        private static final javax.xml.namespace.QName CURRENTTIME$12 = 
+            new javax.xml.namespace.QName("http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part2.xsd", "CurrentTime");
+        private static final javax.xml.namespace.QName CPUUSAGE$14 = 
+            new javax.xml.namespace.QName("http://dell.com/wsdm/demos/interop/2005/04", "CpuUsage");
+        
+        
+        /**
+         * Gets the "ResourceId" element
+         */
+        public java.lang.String getResourceId()
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.xmlbeans.SimpleValue target = null;
+                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(RESOURCEID$0, 0);
+                if (target == null)
+                {
+                    return null;
+                }
+                return target.getStringValue();
+            }
+        }
+        
+        /**
+         * Gets (as xml) the "ResourceId" element
+         */
+        public org.apache.xmlbeans.XmlAnyURI xgetResourceId()
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.xmlbeans.XmlAnyURI target = null;
+                target = (org.apache.xmlbeans.XmlAnyURI)get_store().find_element_user(RESOURCEID$0, 0);
+                return target;
+            }
+        }
+        
+        /**
+         * Sets the "ResourceId" element
+         */
+        public void setResourceId(java.lang.String resourceId)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.xmlbeans.SimpleValue target = null;
+                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(RESOURCEID$0, 0);
+                if (target == null)
+                {
+                    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(RESOURCEID$0);
+                }
+                target.setStringValue(resourceId);
+            }
+        }
+        
+        /**
+         * Sets (as xml) the "ResourceId" element
+         */
+        public void xsetResourceId(org.apache.xmlbeans.XmlAnyURI resourceId)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.xmlbeans.XmlAnyURI target = null;
+                target = (org.apache.xmlbeans.XmlAnyURI)get_store().find_element_user(RESOURCEID$0, 0);
+                if (target == null)
+                {
+                    target = (org.apache.xmlbeans.XmlAnyURI)get_store().add_element_user(RESOURCEID$0);
+                }
+                target.set(resourceId);
+            }
+        }
+        
+        /**
+         * Gets array of all "ManageabilityCapability" elements
+         */
+        public java.lang.String[] getManageabilityCapabilityArray()
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                java.util.List targetList = new java.util.ArrayList();
+                get_store().find_all_element_users(MANAGEABILITYCAPABILITY$2, targetList);
+                java.lang.String[] result = new java.lang.String[targetList.size()];
+                for (int i = 0, len = targetList.size() ; i < len ; i++)
+                    result[i] = ((org.apache.xmlbeans.SimpleValue)targetList.get(i)).getStringValue();
+                return result;
+            }
+        }
+        
+        /**
+         * Gets ith "ManageabilityCapability" element
+         */
+        public java.lang.String getManageabilityCapabilityArray(int i)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.xmlbeans.SimpleValue target = null;
+                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(MANAGEABILITYCAPABILITY$2, i);
+                if (target == null)
+                {
+                    throw new IndexOutOfBoundsException();
+                }
+                return target.getStringValue();
+            }
+        }
+        
+        /**
+         * Gets (as xml) array of all "ManageabilityCapability" elements
+         */
+        public org.apache.xmlbeans.XmlAnyURI[] xgetManageabilityCapabilityArray()
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                java.util.List targetList = new java.util.ArrayList();
+                get_store().find_all_element_users(MANAGEABILITYCAPABILITY$2, targetList);
+                org.apache.xmlbeans.XmlAnyURI[] result = new org.apache.xmlbeans.XmlAnyURI[targetList.size()];
+                targetList.toArray(result);
+                return result;
+            }
+        }
+        
+        /**
+         * Gets (as xml) ith "ManageabilityCapability" element
+         */
+        public org.apache.xmlbeans.XmlAnyURI xgetManageabilityCapabilityArray(int i)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.xmlbeans.XmlAnyURI target = null;
+                target = (org.apache.xmlbeans.XmlAnyURI)get_store().find_element_user(MANAGEABILITYCAPABILITY$2, i);
+                if (target == null)
+                {
+                    throw new IndexOutOfBoundsException();
+                }
+                return (org.apache.xmlbeans.XmlAnyURI)target;
+            }
+        }
+        
+        /**
+         * Returns number of "ManageabilityCapability" element
+         */
+        public int sizeOfManageabilityCapabilityArray()
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                return get_store().count_elements(MANAGEABILITYCAPABILITY$2);
+            }
+        }
+        
+        /**
+         * Sets array of all "ManageabilityCapability" element
+         */
+        public void setManageabilityCapabilityArray(java.lang.String[] manageabilityCapabilityArray)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                arraySetterHelper(manageabilityCapabilityArray, MANAGEABILITYCAPABILITY$2);
+            }
+        }
+        
+        /**
+         * Sets ith "ManageabilityCapability" element
+         */
+        public void setManageabilityCapabilityArray(int i, java.lang.String manageabilityCapability)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.xmlbeans.SimpleValue target = null;
+                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(MANAGEABILITYCAPABILITY$2, i);
+                if (target == null)
+                {
+                    throw new IndexOutOfBoundsException();
+                }
+                target.setStringValue(manageabilityCapability);
+            }
+        }
+        
+        /**
+         * Sets (as xml) array of all "ManageabilityCapability" element
+         */
+        public void xsetManageabilityCapabilityArray(org.apache.xmlbeans.XmlAnyURI[]manageabilityCapabilityArray)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                arraySetterHelper(manageabilityCapabilityArray, MANAGEABILITYCAPABILITY$2);
+            }
+        }
+        
+        /**
+         * Sets (as xml) ith "ManageabilityCapability" element
+         */
+        public void xsetManageabilityCapabilityArray(int i, org.apache.xmlbeans.XmlAnyURI manageabilityCapability)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.xmlbeans.XmlAnyURI target = null;
+                target = (org.apache.xmlbeans.XmlAnyURI)get_store().find_element_user(MANAGEABILITYCAPABILITY$2, i);
+                if (target == null)
+                {
+                    throw new IndexOutOfBoundsException();
+                }
+                target.set(manageabilityCapability);
+            }
+        }
+        
+        /**
+         * Inserts the value as the ith "ManageabilityCapability" element
+         */
+        public void insertManageabilityCapability(int i, java.lang.String manageabilityCapability)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.xmlbeans.SimpleValue target = 
+                    (org.apache.xmlbeans.SimpleValue)get_store().insert_element_user(MANAGEABILITYCAPABILITY$2, i);
+                target.setStringValue(manageabilityCapability);
+            }
+        }
+        
+        /**
+         * Appends the value as the last "ManageabilityCapability" element
+         */
+        public void addManageabilityCapability(java.lang.String manageabilityCapability)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.xmlbeans.SimpleValue target = null;
+                target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(MANAGEABILITYCAPABILITY$2);
+                target.setStringValue(manageabilityCapability);
+            }
+        }
+        
+        /**
+         * Removes the ith "ManageabilityCapability" element
+         */
+        public void removeManageabilityCapability(int i)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                get_store().remove_element(MANAGEABILITYCAPABILITY$2, i);
+            }
+        }
+        
+        /**
+         * Gets the "OperationalStatus" element
+         */
+        public org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.OperationalStatusDocument.OperationalStatus.Enum getOperationalStatus()
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.xmlbeans.SimpleValue target = null;
+                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(OPERATIONALSTATUS$4, 0);
+                if (target == null)
+                {
+                    return null;
+                }
+                return (org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.OperationalStatusDocument.OperationalStatus.Enum)target.getEnumValue();
+            }
+        }
+        
+        /**
+         * Gets (as xml) the "OperationalStatus" element
+         */
+        public org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.OperationalStatusDocument.OperationalStatus xgetOperationalStatus()
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.OperationalStatusDocument.OperationalStatus target = null;
+                target = (org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.OperationalStatusDocument.OperationalStatus)get_store().find_element_user(OPERATIONALSTATUS$4, 0);
+                return target;
+            }
+        }
+        
+        /**
+         * Sets the "OperationalStatus" element
+         */
+        public void setOperationalStatus(org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.OperationalStatusDocument.OperationalStatus.Enum operationalStatus)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.xmlbeans.SimpleValue target = null;
+                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(OPERATIONALSTATUS$4, 0);
+                if (target == null)
+                {
+                    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(OPERATIONALSTATUS$4);
+                }
+                target.setEnumValue(operationalStatus);
+            }
+        }
+        
+        /**
+         * Sets (as xml) the "OperationalStatus" element
+         */
+        public void xsetOperationalStatus(org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.OperationalStatusDocument.OperationalStatus operationalStatus)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.OperationalStatusDocument.OperationalStatus target = null;
+                target = (org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.OperationalStatusDocument.OperationalStatus)get_store().find_element_user(OPERATIONALSTATUS$4, 0);
+                if (target == null)
+                {
+                    target = (org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.OperationalStatusDocument.OperationalStatus)get_store().add_element_user(OPERATIONALSTATUS$4);
+                }
+                target.set(operationalStatus);
+            }
+        }
+        
+        /**
+         * Gets array of all "Topic" elements
+         */
+        public org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.TopicExpressionType[] getTopicArray()
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                java.util.List targetList = new java.util.ArrayList();
+                get_store().find_all_element_users(TOPIC$6, targetList);
+                org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.TopicExpressionType[] result = new org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.TopicExpressionType[targetList.size()];
+                targetList.toArray(result);
+                return result;
+            }
+        }
+        
+        /**
+         * Gets ith "Topic" element
+         */
+        public org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.TopicExpressionType getTopicArray(int i)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.TopicExpressionType target = null;
+                target = (org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.TopicExpressionType)get_store().find_element_user(TOPIC$6, i);
+                if (target == null)
+                {
+                    throw new IndexOutOfBoundsException();
+                }
+                return target;
+            }
+        }
+        
+        /**
+         * Returns number of "Topic" element
+         */
+        public int sizeOfTopicArray()
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                return get_store().count_elements(TOPIC$6);
+            }
+        }
+        
+        /**
+         * Sets array of all "Topic" element
+         */
+        public void setTopicArray(org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.TopicExpressionType[] topicArray)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                arraySetterHelper(topicArray, TOPIC$6);
+            }
+        }
+        
+        /**
+         * Sets ith "Topic" element
+         */
+        public void setTopicArray(int i, org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.TopicExpressionType topic)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.TopicExpressionType target = null;
+                target = (org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.TopicExpressionType)get_store().find_element_user(TOPIC$6, i);
+                if (target == null)
+                {
+                    throw new IndexOutOfBoundsException();
+                }
+                target.set(topic);
+            }
+        }
+        
+        /**
+         * Inserts and returns a new empty value (as xml) as the ith "Topic" element
+         */
+        public org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.TopicExpressionType insertNewTopic(int i)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.TopicExpressionType target = null;
+                target = (org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.TopicExpressionType)get_store().insert_element_user(TOPIC$6, i);
+                return target;
+            }
+        }
+        
+        /**
+         * Appends and returns a new empty value (as xml) as the last "Topic" element
+         */
+        public org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.TopicExpressionType addNewTopic()
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.TopicExpressionType target = null;
+                target = (org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.TopicExpressionType)get_store().add_element_user(TOPIC$6);
+                return target;
+            }
+        }
+        
+        /**
+         * Removes the ith "Topic" element
+         */
+        public void removeTopic(int i)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                get_store().remove_element(TOPIC$6, i);
+            }
+        }
+        
+        /**
+         * Gets the "FixedTopicSet" element
+         */
+        public boolean getFixedTopicSet()
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.xmlbeans.SimpleValue target = null;
+                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(FIXEDTOPICSET$8, 0);
+                if (target == null)
+                {
+                    return false;
+                }
+                return target.getBooleanValue();
+            }
+        }
+        
+        /**
+         * Gets (as xml) the "FixedTopicSet" element
+         */
+        public org.apache.xmlbeans.XmlBoolean xgetFixedTopicSet()
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.xmlbeans.XmlBoolean target = null;
+                target = (org.apache.xmlbeans.XmlBoolean)get_store().find_element_user(FIXEDTOPICSET$8, 0);
+                return target;
+            }
+        }
+        
+        /**
+         * Sets the "FixedTopicSet" element
+         */
+        public void setFixedTopicSet(boolean fixedTopicSet)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.xmlbeans.SimpleValue target = null;
+                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(FIXEDTOPICSET$8, 0);
+                if (target == null)
+                {
+                    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(FIXEDTOPICSET$8);
+                }
+                target.setBooleanValue(fixedTopicSet);
+            }
+        }
+        
+        /**
+         * Sets (as xml) the "FixedTopicSet" element
+         */
+        public void xsetFixedTopicSet(org.apache.xmlbeans.XmlBoolean fixedTopicSet)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.xmlbeans.XmlBoolean target = null;
+                target = (org.apache.xmlbeans.XmlBoolean)get_store().find_element_user(FIXEDTOPICSET$8, 0);
+                if (target == null)
+                {
+                    target = (org.apache.xmlbeans.XmlBoolean)get_store().add_element_user(FIXEDTOPICSET$8);
+                }
+                target.set(fixedTopicSet);
+            }
+        }
+        
+        /**
+         * Gets array of all "TopicExpressionDialects" elements
+         */
+        public java.lang.String[] getTopicExpressionDialectsArray()
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                java.util.List targetList = new java.util.ArrayList();
+                get_store().find_all_element_users(TOPICEXPRESSIONDIALECTS$10, targetList);
+                java.lang.String[] result = new java.lang.String[targetList.size()];
+                for (int i = 0, len = targetList.size() ; i < len ; i++)
+                    result[i] = ((org.apache.xmlbeans.SimpleValue)targetList.get(i)).getStringValue();
+                return result;
+            }
+        }
+        
+        /**
+         * Gets ith "TopicExpressionDialects" element
+         */
+        public java.lang.String getTopicExpressionDialectsArray(int i)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.xmlbeans.SimpleValue target = null;
+                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(TOPICEXPRESSIONDIALECTS$10, i);
+                if (target == null)
+                {
+                    throw new IndexOutOfBoundsException();
+                }
+                return target.getStringValue();
+            }
+        }
+        
+        /**
+         * Gets (as xml) array of all "TopicExpressionDialects" elements
+         */
+        public org.apache.xmlbeans.XmlAnyURI[] xgetTopicExpressionDialectsArray()
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                java.util.List targetList = new java.util.ArrayList();
+                get_store().find_all_element_users(TOPICEXPRESSIONDIALECTS$10, targetList);
+                org.apache.xmlbeans.XmlAnyURI[] result = new org.apache.xmlbeans.XmlAnyURI[targetList.size()];
+                targetList.toArray(result);
+                return result;
+            }
+        }
+        
+        /**
+         * Gets (as xml) ith "TopicExpressionDialects" element
+         */
+        public org.apache.xmlbeans.XmlAnyURI xgetTopicExpressionDialectsArray(int i)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.xmlbeans.XmlAnyURI target = null;
+                target = (org.apache.xmlbeans.XmlAnyURI)get_store().find_element_user(TOPICEXPRESSIONDIALECTS$10, i);
+                if (target == null)
+                {
+                    throw new IndexOutOfBoundsException();
+                }
+                return (org.apache.xmlbeans.XmlAnyURI)target;
+            }
+        }
+        
+        /**
+         * Returns number of "TopicExpressionDialects" element
+         */
+        public int sizeOfTopicExpressionDialectsArray()
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                return get_store().count_elements(TOPICEXPRESSIONDIALECTS$10);
+            }
+        }
+        
+        /**
+         * Sets array of all "TopicExpressionDialects" element
+         */
+        public void setTopicExpressionDialectsArray(java.lang.String[] topicExpressionDialectsArray)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                arraySetterHelper(topicExpressionDialectsArray, TOPICEXPRESSIONDIALECTS$10);
+            }
+        }
+        
+        /**
+         * Sets ith "TopicExpressionDialects" element
+         */
+        public void setTopicExpressionDialectsArray(int i, java.lang.String topicExpressionDialects)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.xmlbeans.SimpleValue target = null;
+                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(TOPICEXPRESSIONDIALECTS$10, i);
+                if (target == null)
+                {
+                    throw new IndexOutOfBoundsException();
+                }
+                target.setStringValue(topicExpressionDialects);
+            }
+        }
+        
+        /**
+         * Sets (as xml) array of all "TopicExpressionDialects" element
+         */
+        public void xsetTopicExpressionDialectsArray(org.apache.xmlbeans.XmlAnyURI[]topicExpressionDialectsArray)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                arraySetterHelper(topicExpressionDialectsArray, TOPICEXPRESSIONDIALECTS$10);
+            }
+        }
+        
+        /**
+         * Sets (as xml) ith "TopicExpressionDialects" element
+         */
+        public void xsetTopicExpressionDialectsArray(int i, org.apache.xmlbeans.XmlAnyURI topicExpressionDialects)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.xmlbeans.XmlAnyURI target = null;
+                target = (org.apache.xmlbeans.XmlAnyURI)get_store().find_element_user(TOPICEXPRESSIONDIALECTS$10, i);
+                if (target == null)
+                {
+                    throw new IndexOutOfBoundsException();
+                }
+                target.set(topicExpressionDialects);
+            }
+        }
+        
+        /**
+         * Inserts the value as the ith "TopicExpressionDialects" element
+         */
+        public void insertTopicExpressionDialects(int i, java.lang.String topicExpressionDialects)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.xmlbeans.SimpleValue target = 
+                    (org.apache.xmlbeans.SimpleValue)get_store().insert_element_user(TOPICEXPRESSIONDIALECTS$10, i);
+                target.setStringValue(topicExpressionDialects);
+            }
+        }
+        
+        /**
+         * Appends the value as the last "TopicExpressionDialects" element
+         */
+        public void addTopicExpressionDialects(java.lang.String topicExpressionDialects)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.xmlbeans.SimpleValue target = null;
+                target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(TOPICEXPRESSIONDIALECTS$10);
+                target.setStringValue(topicExpressionDialects);
+            }
+        }
+        
+        /**
+         * Removes the ith "TopicExpressionDialects" element
+         */
+        public void removeTopicExpressionDialects(int i)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                get_store().remove_element(TOPICEXPRESSIONDIALECTS$10, i);
+            }
+        }
+        
+        /**
+         * Gets the "CurrentTime" element
+         */
+        public java.util.Calendar getCurrentTime()
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.xmlbeans.SimpleValue target = null;
+                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(CURRENTTIME$12, 0);
+                if (target == null)
+                {
+                    return null;
+                }
+                return target.getCalendarValue();
+            }
+        }
+        
+        /**
+         * Gets (as xml) the "CurrentTime" element
+         */
+        public org.apache.xmlbeans.XmlDateTime xgetCurrentTime()
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.xmlbeans.XmlDateTime target = null;
+                target = (org.apache.xmlbeans.XmlDateTime)get_store().find_element_user(CURRENTTIME$12, 0);
+                return target;
+            }
+        }
+        
+        /**
+         * Sets the "CurrentTime" element
+         */
+        public void setCurrentTime(java.util.Calendar currentTime)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.xmlbeans.SimpleValue target = null;
+                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(CURRENTTIME$12, 0);
+                if (target == null)
+                {
+                    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(CURRENTTIME$12);
+                }
+                target.setCalendarValue(currentTime);
+            }
+        }
+        
+        /**
+         * Sets (as xml) the "CurrentTime" element
+         */
+        public void xsetCurrentTime(org.apache.xmlbeans.XmlDateTime currentTime)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.xmlbeans.XmlDateTime target = null;
+                target = (org.apache.xmlbeans.XmlDateTime)get_store().find_element_user(CURRENTTIME$12, 0);
+                if (target == null)
+                {
+                    target = (org.apache.xmlbeans.XmlDateTime)get_store().add_element_user(CURRENTTIME$12);
+                }
+                target.set(currentTime);
+            }
+        }
+        
+        /**
+         * Gets the "CpuUsage" element
+         */
+        public org.apache.xmlbeans.XmlObject getCpuUsage()
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.xmlbeans.XmlObject target = null;
+                target = (org.apache.xmlbeans.XmlObject)get_store().find_element_user(CPUUSAGE$14, 0);
+                if (target == null)
+                {
+                    return null;
+                }
+                return target;
+            }
+        }
+        
+        /**
+         * True if has "CpuUsage" element
+         */
+        public boolean isSetCpuUsage()
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                return get_store().count_elements(CPUUSAGE$14) != 0;
+            }
+        }
+        
+        /**
+         * Sets the "CpuUsage" element
+         */
+        public void setCpuUsage(org.apache.xmlbeans.XmlObject cpuUsage)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.xmlbeans.XmlObject target = null;
+                target = (org.apache.xmlbeans.XmlObject)get_store().find_element_user(CPUUSAGE$14, 0);
+                if (target == null)
+                {
+                    target = (org.apache.xmlbeans.XmlObject)get_store().add_element_user(CPUUSAGE$14);
+                }
+                target.set(cpuUsage);
+            }
+        }
+        
+        /**
+         * Appends and returns a new empty "CpuUsage" element
+         */
+        public org.apache.xmlbeans.XmlObject addNewCpuUsage()
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.xmlbeans.XmlObject target = null;
+                target = (org.apache.xmlbeans.XmlObject)get_store().add_element_user(CPUUSAGE$14);
+                return target;
+            }
+        }
+        
+        /**
+         * Unsets the "CpuUsage" element
+         */
+        public void unsetCpuUsage()
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                get_store().remove_element(CPUUSAGE$14, 0);
+            }
+        }
+    }
+}

Added: incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/IpNameDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/IpNameDocumentImpl.java?view=auto&rev=159692
==============================================================================
--- incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/IpNameDocumentImpl.java (added)
+++ incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/IpNameDocumentImpl.java Fri Apr  1 07:19:48 2005
@@ -0,0 +1,94 @@
+/*
+ * An XML document type.
+ * Localname: IpName
+ * Namespace: http://dell.com/wsdm/demos/interop/2005/04
+ * Java type: com.dell.wsdm.demos.interop.x2005.x04.IpNameDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package com.dell.wsdm.demos.interop.x2005.x04.impl;
+/**
+ * A document containing one IpName(@http://dell.com/wsdm/demos/interop/2005/04) element.
+ *
+ * This is a complex type.
+ */
+public class IpNameDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements com.dell.wsdm.demos.interop.x2005.x04.IpNameDocument
+{
+    
+    public IpNameDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName IPNAME$0 = 
+        new javax.xml.namespace.QName("http://dell.com/wsdm/demos/interop/2005/04", "IpName");
+    
+    
+    /**
+     * Gets the "IpName" element
+     */
+    public java.lang.String getIpName()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(IPNAME$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target.getStringValue();
+        }
+    }
+    
+    /**
+     * Gets (as xml) the "IpName" element
+     */
+    public org.apache.xmlbeans.XmlString xgetIpName()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlString target = null;
+            target = (org.apache.xmlbeans.XmlString)get_store().find_element_user(IPNAME$0, 0);
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "IpName" element
+     */
+    public void setIpName(java.lang.String ipName)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(IPNAME$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(IPNAME$0);
+            }
+            target.setStringValue(ipName);
+        }
+    }
+    
+    /**
+     * Sets (as xml) the "IpName" element
+     */
+    public void xsetIpName(org.apache.xmlbeans.XmlString ipName)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlString target = null;
+            target = (org.apache.xmlbeans.XmlString)get_store().find_element_user(IPNAME$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.XmlString)get_store().add_element_user(IPNAME$0);
+            }
+            target.set(ipName);
+        }
+    }
+}

Added: incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/ModelNameDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/ModelNameDocumentImpl.java?view=auto&rev=159692
==============================================================================
--- incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/ModelNameDocumentImpl.java (added)
+++ incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/ModelNameDocumentImpl.java Fri Apr  1 07:19:48 2005
@@ -0,0 +1,94 @@
+/*
+ * An XML document type.
+ * Localname: ModelName
+ * Namespace: http://dell.com/wsdm/demos/interop/2005/04
+ * Java type: com.dell.wsdm.demos.interop.x2005.x04.ModelNameDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package com.dell.wsdm.demos.interop.x2005.x04.impl;
+/**
+ * A document containing one ModelName(@http://dell.com/wsdm/demos/interop/2005/04) element.
+ *
+ * This is a complex type.
+ */
+public class ModelNameDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements com.dell.wsdm.demos.interop.x2005.x04.ModelNameDocument
+{
+    
+    public ModelNameDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName MODELNAME$0 = 
+        new javax.xml.namespace.QName("http://dell.com/wsdm/demos/interop/2005/04", "ModelName");
+    
+    
+    /**
+     * Gets the "ModelName" element
+     */
+    public java.lang.String getModelName()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(MODELNAME$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target.getStringValue();
+        }
+    }
+    
+    /**
+     * Gets (as xml) the "ModelName" element
+     */
+    public org.apache.xmlbeans.XmlString xgetModelName()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlString target = null;
+            target = (org.apache.xmlbeans.XmlString)get_store().find_element_user(MODELNAME$0, 0);
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "ModelName" element
+     */
+    public void setModelName(java.lang.String modelName)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(MODELNAME$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(MODELNAME$0);
+            }
+            target.setStringValue(modelName);
+        }
+    }
+    
+    /**
+     * Sets (as xml) the "ModelName" element
+     */
+    public void xsetModelName(org.apache.xmlbeans.XmlString modelName)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlString target = null;
+            target = (org.apache.xmlbeans.XmlString)get_store().find_element_user(MODELNAME$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.XmlString)get_store().add_element_user(MODELNAME$0);
+            }
+            target.set(modelName);
+        }
+    }
+}

Added: incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/ResetDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/ResetDocumentImpl.java?view=auto&rev=159692
==============================================================================
--- incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/ResetDocumentImpl.java (added)
+++ incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/ResetDocumentImpl.java Fri Apr  1 07:19:48 2005
@@ -0,0 +1,91 @@
+/*
+ * An XML document type.
+ * Localname: Reset
+ * Namespace: http://dell.com/wsdm/demos/interop/2005/04
+ * Java type: com.dell.wsdm.demos.interop.x2005.x04.ResetDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package com.dell.wsdm.demos.interop.x2005.x04.impl;
+/**
+ * A document containing one Reset(@http://dell.com/wsdm/demos/interop/2005/04) element.
+ *
+ * This is a complex type.
+ */
+public class ResetDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements com.dell.wsdm.demos.interop.x2005.x04.ResetDocument
+{
+    
+    public ResetDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName RESET$0 = 
+        new javax.xml.namespace.QName("http://dell.com/wsdm/demos/interop/2005/04", "Reset");
+    
+    
+    /**
+     * Gets the "Reset" element
+     */
+    public com.dell.wsdm.demos.interop.x2005.x04.ResetDocument.Reset getReset()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            com.dell.wsdm.demos.interop.x2005.x04.ResetDocument.Reset target = null;
+            target = (com.dell.wsdm.demos.interop.x2005.x04.ResetDocument.Reset)get_store().find_element_user(RESET$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "Reset" element
+     */
+    public void setReset(com.dell.wsdm.demos.interop.x2005.x04.ResetDocument.Reset reset)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            com.dell.wsdm.demos.interop.x2005.x04.ResetDocument.Reset target = null;
+            target = (com.dell.wsdm.demos.interop.x2005.x04.ResetDocument.Reset)get_store().find_element_user(RESET$0, 0);
+            if (target == null)
+            {
+                target = (com.dell.wsdm.demos.interop.x2005.x04.ResetDocument.Reset)get_store().add_element_user(RESET$0);
+            }
+            target.set(reset);
+        }
+    }
+    
+    /**
+     * Appends and returns a new empty "Reset" element
+     */
+    public com.dell.wsdm.demos.interop.x2005.x04.ResetDocument.Reset addNewReset()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            com.dell.wsdm.demos.interop.x2005.x04.ResetDocument.Reset target = null;
+            target = (com.dell.wsdm.demos.interop.x2005.x04.ResetDocument.Reset)get_store().add_element_user(RESET$0);
+            return target;
+        }
+    }
+    /**
+     * An XML Reset(@http://dell.com/wsdm/demos/interop/2005/04).
+     *
+     * This is a complex type.
+     */
+    public static class ResetImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements com.dell.wsdm.demos.interop.x2005.x04.ResetDocument.Reset
+    {
+        
+        public ResetImpl(org.apache.xmlbeans.SchemaType sType)
+        {
+            super(sType);
+        }
+        
+        
+    }
+}

Added: incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/ResetResponseDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/ResetResponseDocumentImpl.java?view=auto&rev=159692
==============================================================================
--- incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/ResetResponseDocumentImpl.java (added)
+++ incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/ResetResponseDocumentImpl.java Fri Apr  1 07:19:48 2005
@@ -0,0 +1,91 @@
+/*
+ * An XML document type.
+ * Localname: ResetResponse
+ * Namespace: http://dell.com/wsdm/demos/interop/2005/04
+ * Java type: com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package com.dell.wsdm.demos.interop.x2005.x04.impl;
+/**
+ * A document containing one ResetResponse(@http://dell.com/wsdm/demos/interop/2005/04) element.
+ *
+ * This is a complex type.
+ */
+public class ResetResponseDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument
+{
+    
+    public ResetResponseDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName RESETRESPONSE$0 = 
+        new javax.xml.namespace.QName("http://dell.com/wsdm/demos/interop/2005/04", "ResetResponse");
+    
+    
+    /**
+     * Gets the "ResetResponse" element
+     */
+    public com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument.ResetResponse getResetResponse()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument.ResetResponse target = null;
+            target = (com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument.ResetResponse)get_store().find_element_user(RESETRESPONSE$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "ResetResponse" element
+     */
+    public void setResetResponse(com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument.ResetResponse resetResponse)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument.ResetResponse target = null;
+            target = (com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument.ResetResponse)get_store().find_element_user(RESETRESPONSE$0, 0);
+            if (target == null)
+            {
+                target = (com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument.ResetResponse)get_store().add_element_user(RESETRESPONSE$0);
+            }
+            target.set(resetResponse);
+        }
+    }
+    
+    /**
+     * Appends and returns a new empty "ResetResponse" element
+     */
+    public com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument.ResetResponse addNewResetResponse()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument.ResetResponse target = null;
+            target = (com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument.ResetResponse)get_store().add_element_user(RESETRESPONSE$0);
+            return target;
+        }
+    }
+    /**
+     * An XML ResetResponse(@http://dell.com/wsdm/demos/interop/2005/04).
+     *
+     * This is a complex type.
+     */
+    public static class ResetResponseImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements com.dell.wsdm.demos.interop.x2005.x04.ResetResponseDocument.ResetResponse
+    {
+        
+        public ResetResponseImpl(org.apache.xmlbeans.SchemaType sType)
+        {
+            super(sType);
+        }
+        
+        
+    }
+}

Added: incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/SerialNumberDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/SerialNumberDocumentImpl.java?view=auto&rev=159692
==============================================================================
--- incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/SerialNumberDocumentImpl.java (added)
+++ incubator/muse/trunk/src/site/content/interop/src/.xmlbeans/src/com/dell/wsdm/demos/interop/x2005/x04/impl/SerialNumberDocumentImpl.java Fri Apr  1 07:19:48 2005
@@ -0,0 +1,94 @@
+/*
+ * An XML document type.
+ * Localname: SerialNumber
+ * Namespace: http://dell.com/wsdm/demos/interop/2005/04
+ * Java type: com.dell.wsdm.demos.interop.x2005.x04.SerialNumberDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package com.dell.wsdm.demos.interop.x2005.x04.impl;
+/**
+ * A document containing one SerialNumber(@http://dell.com/wsdm/demos/interop/2005/04) element.
+ *
+ * This is a complex type.
+ */
+public class SerialNumberDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements com.dell.wsdm.demos.interop.x2005.x04.SerialNumberDocument
+{
+    
+    public SerialNumberDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName SERIALNUMBER$0 = 
+        new javax.xml.namespace.QName("http://dell.com/wsdm/demos/interop/2005/04", "SerialNumber");
+    
+    
+    /**
+     * Gets the "SerialNumber" element
+     */
+    public java.lang.String getSerialNumber()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(SERIALNUMBER$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target.getStringValue();
+        }
+    }
+    
+    /**
+     * Gets (as xml) the "SerialNumber" element
+     */
+    public org.apache.xmlbeans.XmlString xgetSerialNumber()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlString target = null;
+            target = (org.apache.xmlbeans.XmlString)get_store().find_element_user(SERIALNUMBER$0, 0);
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "SerialNumber" element
+     */
+    public void setSerialNumber(java.lang.String serialNumber)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(SERIALNUMBER$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(SERIALNUMBER$0);
+            }
+            target.setStringValue(serialNumber);
+        }
+    }
+    
+    /**
+     * Sets (as xml) the "SerialNumber" element
+     */
+    public void xsetSerialNumber(org.apache.xmlbeans.XmlString serialNumber)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlString target = null;
+            target = (org.apache.xmlbeans.XmlString)get_store().find_element_user(SERIALNUMBER$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.XmlString)get_store().add_element_user(SERIALNUMBER$0);
+            }
+            target.set(serialNumber);
+        }
+    }
+}



---------------------------------------------------------------------
To unsubscribe, e-mail: muse-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: muse-dev-help@ws.apache.org