Added: 
incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/host/properties/CpuUsageDocument.java
URL: 
http://svn.apache.org/viewcvs/incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/host/properties/CpuUsageDocument.java?rev=191585&view=auto
==============================================================================
--- 
incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/host/properties/CpuUsageDocument.java
 (added)
+++ 
incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/host/properties/CpuUsageDocument.java
 Mon Jun 20 16:28:31 2005
@@ -0,0 +1,109 @@
+/*

+ * An XML document type.

+ * Localname: CpuUsage

+ * Namespace: http://ws.apache.org/muse/example/host/properties

+ * Java type: org.apache.ws.muse.example.host.properties.CpuUsageDocument

+ *

+ * Automatically generated - do not modify.

+ */

+package org.apache.ws.muse.example.host.properties;

+

+

+/**

+ * A document containing one 
CpuUsage(@http://ws.apache.org/muse/example/host/properties) element.

+ *

+ * This is a complex type.

+ */

+public interface CpuUsageDocument extends org.apache.xmlbeans.XmlObject

+{

+    public static final org.apache.xmlbeans.SchemaType type = 
(org.apache.xmlbeans.SchemaType)schema.system.sB8C707FF7F921C21C8A9B15E22C64932.TypeSystemHolder.typeSystem.resolveHandle("cpuusage1a5ddoctype");

+    

+    /**

+     * Gets the "CpuUsage" element

+     */

+    org.apache.ws.namespaces.muse.muwsExt1.IntMetric getCpuUsage();

+    

+    /**

+     * Sets the "CpuUsage" element

+     */

+    void setCpuUsage(org.apache.ws.namespaces.muse.muwsExt1.IntMetric 
cpuUsage);

+    

+    /**

+     * Appends and returns a new empty "CpuUsage" element

+     */

+    org.apache.ws.namespaces.muse.muwsExt1.IntMetric addNewCpuUsage();

+    

+    /**

+     * A factory class with static methods for creating instances

+     * of this type.

+     */

+    

+    public static final class Factory

+    {

+        public static 
org.apache.ws.muse.example.host.properties.CpuUsageDocument newInstance() {

+          return (org.apache.ws.muse.example.host.properties.CpuUsageDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }

+        

+        public static 
org.apache.ws.muse.example.host.properties.CpuUsageDocument 
newInstance(org.apache.xmlbeans.XmlOptions options) {

+          return (org.apache.ws.muse.example.host.properties.CpuUsageDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options 
); }

+        

+        /** @param xmlAsString the string value to parse */

+        public static 
org.apache.ws.muse.example.host.properties.CpuUsageDocument 
parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {

+          return (org.apache.ws.muse.example.host.properties.CpuUsageDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, 
null ); }

+        

+        public static 
org.apache.ws.muse.example.host.properties.CpuUsageDocument 
parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) 
throws org.apache.xmlbeans.XmlException {

+          return (org.apache.ws.muse.example.host.properties.CpuUsageDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, 
options ); }

+        

+        /** @param file the file from which to load an xml document */

+        public static 
org.apache.ws.muse.example.host.properties.CpuUsageDocument parse(java.io.File 
file) throws org.apache.xmlbeans.XmlException, java.io.IOException {

+          return (org.apache.ws.muse.example.host.properties.CpuUsageDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }

+        

+        public static 
org.apache.ws.muse.example.host.properties.CpuUsageDocument parse(java.io.File 
file, org.apache.xmlbeans.XmlOptions options) throws 
org.apache.xmlbeans.XmlException, java.io.IOException {

+          return (org.apache.ws.muse.example.host.properties.CpuUsageDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options 
); }

+        

+        public static 
org.apache.ws.muse.example.host.properties.CpuUsageDocument parse(java.net.URL 
u) throws org.apache.xmlbeans.XmlException, java.io.IOException {

+          return (org.apache.ws.muse.example.host.properties.CpuUsageDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }

+        

+        public static 
org.apache.ws.muse.example.host.properties.CpuUsageDocument parse(java.net.URL 
u, org.apache.xmlbeans.XmlOptions options) throws 
org.apache.xmlbeans.XmlException, java.io.IOException {

+          return (org.apache.ws.muse.example.host.properties.CpuUsageDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }

+        

+        public static 
org.apache.ws.muse.example.host.properties.CpuUsageDocument 
parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, 
java.io.IOException {

+          return (org.apache.ws.muse.example.host.properties.CpuUsageDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }

+        

+        public static 
org.apache.ws.muse.example.host.properties.CpuUsageDocument 
parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws 
org.apache.xmlbeans.XmlException, java.io.IOException {

+          return (org.apache.ws.muse.example.host.properties.CpuUsageDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); 
}

+        

+        public static 
org.apache.ws.muse.example.host.properties.CpuUsageDocument 
parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, 
java.io.IOException {

+          return (org.apache.ws.muse.example.host.properties.CpuUsageDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }

+        

+        public static 
org.apache.ws.muse.example.host.properties.CpuUsageDocument 
parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws 
org.apache.xmlbeans.XmlException, java.io.IOException {

+          return (org.apache.ws.muse.example.host.properties.CpuUsageDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }

+        

+        public static 
org.apache.ws.muse.example.host.properties.CpuUsageDocument 
parse(javax.xml.stream.XMLStreamReader sr) throws 
org.apache.xmlbeans.XmlException {

+          return (org.apache.ws.muse.example.host.properties.CpuUsageDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }

+        

+        public static 
org.apache.ws.muse.example.host.properties.CpuUsageDocument 
parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions 
options) throws org.apache.xmlbeans.XmlException {

+          return (org.apache.ws.muse.example.host.properties.CpuUsageDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); 
}

+        

+        public static 
org.apache.ws.muse.example.host.properties.CpuUsageDocument 
parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {

+          return (org.apache.ws.muse.example.host.properties.CpuUsageDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }

+        

+        public static 
org.apache.ws.muse.example.host.properties.CpuUsageDocument 
parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws 
org.apache.xmlbeans.XmlException {

+          return (org.apache.ws.muse.example.host.properties.CpuUsageDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options 
); }

+        

+        public static 
org.apache.ws.muse.example.host.properties.CpuUsageDocument 
parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws 
org.apache.xmlbeans.XmlException, 
org.apache.xmlbeans.xml.stream.XMLStreamException {

+          return (org.apache.ws.muse.example.host.properties.CpuUsageDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }

+        

+        public static 
org.apache.ws.muse.example.host.properties.CpuUsageDocument 
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 (org.apache.ws.muse.example.host.properties.CpuUsageDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options 
); }

+        

+        /** @deprecated [EMAIL PROTECTED] XMLInputStream} */

+        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 ); }

+        

+        /** @deprecated [EMAIL PROTECTED] XMLInputStream} */

+        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/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/host/properties/NumberOfProcessesDocument.java
URL: 
http://svn.apache.org/viewcvs/incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/host/properties/NumberOfProcessesDocument.java?rev=191585&view=auto
==============================================================================
--- 
incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/host/properties/NumberOfProcessesDocument.java
 (added)
+++ 
incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/host/properties/NumberOfProcessesDocument.java
 Mon Jun 20 16:28:31 2005
@@ -0,0 +1,109 @@
+/*

+ * An XML document type.

+ * Localname: NumberOfProcesses

+ * Namespace: http://ws.apache.org/muse/example/host/properties

+ * Java type: 
org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument

+ *

+ * Automatically generated - do not modify.

+ */

+package org.apache.ws.muse.example.host.properties;

+

+

+/**

+ * A document containing one 
NumberOfProcesses(@http://ws.apache.org/muse/example/host/properties) element.

+ *

+ * This is a complex type.

+ */

+public interface NumberOfProcessesDocument extends 
org.apache.xmlbeans.XmlObject

+{

+    public static final org.apache.xmlbeans.SchemaType type = 
(org.apache.xmlbeans.SchemaType)schema.system.sB8C707FF7F921C21C8A9B15E22C64932.TypeSystemHolder.typeSystem.resolveHandle("numberofprocesses162fdoctype");

+    

+    /**

+     * Gets the "NumberOfProcesses" element

+     */

+    org.apache.ws.namespaces.muse.muwsExt1.IntMetric getNumberOfProcesses();

+    

+    /**

+     * Sets the "NumberOfProcesses" element

+     */

+    void setNumberOfProcesses(org.apache.ws.namespaces.muse.muwsExt1.IntMetric 
numberOfProcesses);

+    

+    /**

+     * Appends and returns a new empty "NumberOfProcesses" element

+     */

+    org.apache.ws.namespaces.muse.muwsExt1.IntMetric addNewNumberOfProcesses();

+    

+    /**

+     * A factory class with static methods for creating instances

+     * of this type.

+     */

+    

+    public static final class Factory

+    {

+        public static 
org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument 
newInstance() {

+          return 
(org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }

+        

+        public static 
org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument 
newInstance(org.apache.xmlbeans.XmlOptions options) {

+          return 
(org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options 
); }

+        

+        /** @param xmlAsString the string value to parse */

+        public static 
org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument 
parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {

+          return 
(org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, 
null ); }

+        

+        public static 
org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument 
parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) 
throws org.apache.xmlbeans.XmlException {

+          return 
(org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, 
options ); }

+        

+        /** @param file the file from which to load an xml document */

+        public static 
org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument 
parse(java.io.File file) throws org.apache.xmlbeans.XmlException, 
java.io.IOException {

+          return 
(org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }

+        

+        public static 
org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument 
parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws 
org.apache.xmlbeans.XmlException, java.io.IOException {

+          return 
(org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options 
); }

+        

+        public static 
org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument 
parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, 
java.io.IOException {

+          return 
(org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }

+        

+        public static 
org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument 
parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws 
org.apache.xmlbeans.XmlException, java.io.IOException {

+          return 
(org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }

+        

+        public static 
org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument 
parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, 
java.io.IOException {

+          return 
(org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }

+        

+        public static 
org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument 
parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws 
org.apache.xmlbeans.XmlException, java.io.IOException {

+          return 
(org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); 
}

+        

+        public static 
org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument 
parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, 
java.io.IOException {

+          return 
(org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }

+        

+        public static 
org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument 
parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws 
org.apache.xmlbeans.XmlException, java.io.IOException {

+          return 
(org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }

+        

+        public static 
org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument 
parse(javax.xml.stream.XMLStreamReader sr) throws 
org.apache.xmlbeans.XmlException {

+          return 
(org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }

+        

+        public static 
org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument 
parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions 
options) throws org.apache.xmlbeans.XmlException {

+          return 
(org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); 
}

+        

+        public static 
org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument 
parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {

+          return 
(org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }

+        

+        public static 
org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument 
parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws 
org.apache.xmlbeans.XmlException {

+          return 
(org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options 
); }

+        

+        public static 
org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument 
parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws 
org.apache.xmlbeans.XmlException, 
org.apache.xmlbeans.xml.stream.XMLStreamException {

+          return 
(org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }

+        

+        public static 
org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument 
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 
(org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument) 
org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options 
); }

+        

+        /** @deprecated [EMAIL PROTECTED] XMLInputStream} */

+        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 ); }

+        

+        /** @deprecated [EMAIL PROTECTED] XMLInputStream} */

+        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/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/host/properties/impl/AvailableMemoryDocumentImpl.java
URL: 
http://svn.apache.org/viewcvs/incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/host/properties/impl/AvailableMemoryDocumentImpl.java?rev=191585&view=auto
==============================================================================
--- 
incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/host/properties/impl/AvailableMemoryDocumentImpl.java
 (added)
+++ 
incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/host/properties/impl/AvailableMemoryDocumentImpl.java
 Mon Jun 20 16:28:31 2005
@@ -0,0 +1,76 @@
+/*

+ * An XML document type.

+ * Localname: AvailableMemory

+ * Namespace: http://ws.apache.org/muse/example/host/properties

+ * Java type: 
org.apache.ws.muse.example.host.properties.AvailableMemoryDocument

+ *

+ * Automatically generated - do not modify.

+ */

+package org.apache.ws.muse.example.host.properties.impl;

+/**

+ * A document containing one 
AvailableMemory(@http://ws.apache.org/muse/example/host/properties) element.

+ *

+ * This is a complex type.

+ */

+public class AvailableMemoryDocumentImpl extends 
org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements 
org.apache.ws.muse.example.host.properties.AvailableMemoryDocument

+{

+    

+    public AvailableMemoryDocumentImpl(org.apache.xmlbeans.SchemaType sType)

+    {

+        super(sType);

+    }

+    

+    private static final javax.xml.namespace.QName AVAILABLEMEMORY$0 = 

+        new 
javax.xml.namespace.QName("http://ws.apache.org/muse/example/host/properties";, 
"AvailableMemory");

+    

+    

+    /**

+     * Gets the "AvailableMemory" element

+     */

+    public org.apache.ws.namespaces.muse.muwsExt1.LongMetric 
getAvailableMemory()

+    {

+        synchronized (monitor())

+        {

+            check_orphaned();

+            org.apache.ws.namespaces.muse.muwsExt1.LongMetric target = null;

+            target = 
(org.apache.ws.namespaces.muse.muwsExt1.LongMetric)get_store().find_element_user(AVAILABLEMEMORY$0,
 0);

+            if (target == null)

+            {

+                return null;

+            }

+            return target;

+        }

+    }

+    

+    /**

+     * Sets the "AvailableMemory" element

+     */

+    public void 
setAvailableMemory(org.apache.ws.namespaces.muse.muwsExt1.LongMetric 
availableMemory)

+    {

+        synchronized (monitor())

+        {

+            check_orphaned();

+            org.apache.ws.namespaces.muse.muwsExt1.LongMetric target = null;

+            target = 
(org.apache.ws.namespaces.muse.muwsExt1.LongMetric)get_store().find_element_user(AVAILABLEMEMORY$0,
 0);

+            if (target == null)

+            {

+                target = 
(org.apache.ws.namespaces.muse.muwsExt1.LongMetric)get_store().add_element_user(AVAILABLEMEMORY$0);

+            }

+            target.set(availableMemory);

+        }

+    }

+    

+    /**

+     * Appends and returns a new empty "AvailableMemory" element

+     */

+    public org.apache.ws.namespaces.muse.muwsExt1.LongMetric 
addNewAvailableMemory()

+    {

+        synchronized (monitor())

+        {

+            check_orphaned();

+            org.apache.ws.namespaces.muse.muwsExt1.LongMetric target = null;

+            target = 
(org.apache.ws.namespaces.muse.muwsExt1.LongMetric)get_store().add_element_user(AVAILABLEMEMORY$0);

+            return target;

+        }

+    }

+}


Added: 
incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/host/properties/impl/CpuUsageDocumentImpl.java
URL: 
http://svn.apache.org/viewcvs/incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/host/properties/impl/CpuUsageDocumentImpl.java?rev=191585&view=auto
==============================================================================
--- 
incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/host/properties/impl/CpuUsageDocumentImpl.java
 (added)
+++ 
incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/host/properties/impl/CpuUsageDocumentImpl.java
 Mon Jun 20 16:28:31 2005
@@ -0,0 +1,76 @@
+/*

+ * An XML document type.

+ * Localname: CpuUsage

+ * Namespace: http://ws.apache.org/muse/example/host/properties

+ * Java type: org.apache.ws.muse.example.host.properties.CpuUsageDocument

+ *

+ * Automatically generated - do not modify.

+ */

+package org.apache.ws.muse.example.host.properties.impl;

+/**

+ * A document containing one 
CpuUsage(@http://ws.apache.org/muse/example/host/properties) element.

+ *

+ * This is a complex type.

+ */

+public class CpuUsageDocumentImpl extends 
org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements 
org.apache.ws.muse.example.host.properties.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://ws.apache.org/muse/example/host/properties";, 
"CpuUsage");

+    

+    

+    /**

+     * Gets the "CpuUsage" element

+     */

+    public org.apache.ws.namespaces.muse.muwsExt1.IntMetric getCpuUsage()

+    {

+        synchronized (monitor())

+        {

+            check_orphaned();

+            org.apache.ws.namespaces.muse.muwsExt1.IntMetric target = null;

+            target = 
(org.apache.ws.namespaces.muse.muwsExt1.IntMetric)get_store().find_element_user(CPUUSAGE$0,
 0);

+            if (target == null)

+            {

+                return null;

+            }

+            return target;

+        }

+    }

+    

+    /**

+     * Sets the "CpuUsage" element

+     */

+    public void setCpuUsage(org.apache.ws.namespaces.muse.muwsExt1.IntMetric 
cpuUsage)

+    {

+        synchronized (monitor())

+        {

+            check_orphaned();

+            org.apache.ws.namespaces.muse.muwsExt1.IntMetric target = null;

+            target = 
(org.apache.ws.namespaces.muse.muwsExt1.IntMetric)get_store().find_element_user(CPUUSAGE$0,
 0);

+            if (target == null)

+            {

+                target = 
(org.apache.ws.namespaces.muse.muwsExt1.IntMetric)get_store().add_element_user(CPUUSAGE$0);

+            }

+            target.set(cpuUsage);

+        }

+    }

+    

+    /**

+     * Appends and returns a new empty "CpuUsage" element

+     */

+    public org.apache.ws.namespaces.muse.muwsExt1.IntMetric addNewCpuUsage()

+    {

+        synchronized (monitor())

+        {

+            check_orphaned();

+            org.apache.ws.namespaces.muse.muwsExt1.IntMetric target = null;

+            target = 
(org.apache.ws.namespaces.muse.muwsExt1.IntMetric)get_store().add_element_user(CPUUSAGE$0);

+            return target;

+        }

+    }

+}


Added: 
incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/host/properties/impl/NumberOfProcessesDocumentImpl.java
URL: 
http://svn.apache.org/viewcvs/incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/host/properties/impl/NumberOfProcessesDocumentImpl.java?rev=191585&view=auto
==============================================================================
--- 
incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/host/properties/impl/NumberOfProcessesDocumentImpl.java
 (added)
+++ 
incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/host/properties/impl/NumberOfProcessesDocumentImpl.java
 Mon Jun 20 16:28:31 2005
@@ -0,0 +1,76 @@
+/*

+ * An XML document type.

+ * Localname: NumberOfProcesses

+ * Namespace: http://ws.apache.org/muse/example/host/properties

+ * Java type: 
org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument

+ *

+ * Automatically generated - do not modify.

+ */

+package org.apache.ws.muse.example.host.properties.impl;

+/**

+ * A document containing one 
NumberOfProcesses(@http://ws.apache.org/muse/example/host/properties) element.

+ *

+ * This is a complex type.

+ */

+public class NumberOfProcessesDocumentImpl extends 
org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements 
org.apache.ws.muse.example.host.properties.NumberOfProcessesDocument

+{

+    

+    public NumberOfProcessesDocumentImpl(org.apache.xmlbeans.SchemaType sType)

+    {

+        super(sType);

+    }

+    

+    private static final javax.xml.namespace.QName NUMBEROFPROCESSES$0 = 

+        new 
javax.xml.namespace.QName("http://ws.apache.org/muse/example/host/properties";, 
"NumberOfProcesses");

+    

+    

+    /**

+     * Gets the "NumberOfProcesses" element

+     */

+    public org.apache.ws.namespaces.muse.muwsExt1.IntMetric 
getNumberOfProcesses()

+    {

+        synchronized (monitor())

+        {

+            check_orphaned();

+            org.apache.ws.namespaces.muse.muwsExt1.IntMetric target = null;

+            target = 
(org.apache.ws.namespaces.muse.muwsExt1.IntMetric)get_store().find_element_user(NUMBEROFPROCESSES$0,
 0);

+            if (target == null)

+            {

+                return null;

+            }

+            return target;

+        }

+    }

+    

+    /**

+     * Sets the "NumberOfProcesses" element

+     */

+    public void 
setNumberOfProcesses(org.apache.ws.namespaces.muse.muwsExt1.IntMetric 
numberOfProcesses)

+    {

+        synchronized (monitor())

+        {

+            check_orphaned();

+            org.apache.ws.namespaces.muse.muwsExt1.IntMetric target = null;

+            target = 
(org.apache.ws.namespaces.muse.muwsExt1.IntMetric)get_store().find_element_user(NUMBEROFPROCESSES$0,
 0);

+            if (target == null)

+            {

+                target = 
(org.apache.ws.namespaces.muse.muwsExt1.IntMetric)get_store().add_element_user(NUMBEROFPROCESSES$0);

+            }

+            target.set(numberOfProcesses);

+        }

+    }

+    

+    /**

+     * Appends and returns a new empty "NumberOfProcesses" element

+     */

+    public org.apache.ws.namespaces.muse.muwsExt1.IntMetric 
addNewNumberOfProcesses()

+    {

+        synchronized (monitor())

+        {

+            check_orphaned();

+            org.apache.ws.namespaces.muse.muwsExt1.IntMetric target = null;

+            target = 
(org.apache.ws.namespaces.muse.muwsExt1.IntMetric)get_store().add_element_user(NUMBEROFPROCESSES$0);

+            return target;

+        }

+    }

+}


Added: 
incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/integrationserver/IntegrationServerPropertiesDocument.java
URL: 
http://svn.apache.org/viewcvs/incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/integrationserver/IntegrationServerPropertiesDocument.java?rev=191585&view=auto
==============================================================================
--- 
incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/integrationserver/IntegrationServerPropertiesDocument.java
 (added)
+++ 
incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/integrationserver/IntegrationServerPropertiesDocument.java
 Mon Jun 20 16:28:31 2005
@@ -0,0 +1,600 @@
+/*

+ * An XML document type.

+ * Localname: IntegrationServerProperties

+ * Namespace: http://ws.apache.org/muse/example/integrationserver

+ * Java type: 
org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument

+ *

+ * Automatically generated - do not modify.

+ */

+package org.apache.ws.muse.example.integrationserver;

+

+

+/**

+ * A document containing one 
IntegrationServerProperties(@http://ws.apache.org/muse/example/integrationserver)
 element.

+ *

+ * This is a complex type.

+ */

+public interface IntegrationServerPropertiesDocument extends 
org.apache.xmlbeans.XmlObject

+{

+    public static final org.apache.xmlbeans.SchemaType type = 
(org.apache.xmlbeans.SchemaType)schema.system.s8584C8AD61653752E03A8656B191B7CE.TypeSystemHolder.typeSystem.resolveHandle("integrationserverproperties8859doctype");

+    

+    /**

+     * Gets the "IntegrationServerProperties" element

+     */

+    
org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument.IntegrationServerProperties
 getIntegrationServerProperties();

+    

+    /**

+     * Sets the "IntegrationServerProperties" element

+     */

+    void 
setIntegrationServerProperties(org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument.IntegrationServerProperties
 integrationServerProperties);

+    

+    /**

+     * Appends and returns a new empty "IntegrationServerProperties" element

+     */

+    
org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument.IntegrationServerProperties
 addNewIntegrationServerProperties();

+    

+    /**

+     * An XML 
IntegrationServerProperties(@http://ws.apache.org/muse/example/integrationserver).

+     *

+     * This is a complex type.

+     */

+    public interface IntegrationServerProperties extends 
org.apache.xmlbeans.XmlObject

+    {

+        public static final org.apache.xmlbeans.SchemaType type = 
(org.apache.xmlbeans.SchemaType)schema.system.s8584C8AD61653752E03A8656B191B7CE.TypeSystemHolder.typeSystem.resolveHandle("integrationserverpropertiesf1efelemtype");

+        

+        /**

+         * Gets array of all "Topic" elements

+         */

+        
org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.TopicExpressionType[]
 getTopicArray();

+        

+        /**

+         * Gets ith "Topic" element

+         */

+        
org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.TopicExpressionType
 getTopicArray(int i);

+        

+        /**

+         * Returns number of "Topic" element

+         */

+        int sizeOfTopicArray();

+        

+        /**

+         * Sets array of all "Topic" element

+         */

+        void 
setTopicArray(org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.TopicExpressionType[]
 topicArray);

+        

+        /**

+         * Sets ith "Topic" element

+         */

+        void setTopicArray(int i, 
org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.TopicExpressionType
 topic);

+        

+        /**

+         * Inserts and returns a new empty value (as xml) as the ith "Topic" 
element

+         */

+        
org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.TopicExpressionType
 insertNewTopic(int i);

+        

+        /**

+         * Appends and returns a new empty value (as xml) as the last "Topic" 
element

+         */

+        
org.oasisOpen.docs.wsn.x2004.x06.wsnWSBaseNotification12Draft01.TopicExpressionType
 addNewTopic();

+        

+        /**

+         * Removes the ith "Topic" element

+         */

+        void removeTopic(int i);

+        

+        /**

+         * Gets the "FixedTopicSet" element

+         */

+        boolean getFixedTopicSet();

+        

+        /**

+         * Gets (as xml) the "FixedTopicSet" element

+         */

+        org.apache.xmlbeans.XmlBoolean xgetFixedTopicSet();

+        

+        /**

+         * Sets the "FixedTopicSet" element

+         */

+        void setFixedTopicSet(boolean fixedTopicSet);

+        

+        /**

+         * Sets (as xml) the "FixedTopicSet" element

+         */

+        void xsetFixedTopicSet(org.apache.xmlbeans.XmlBoolean fixedTopicSet);

+        

+        /**

+         * Gets array of all "TopicExpressionDialects" elements

+         */

+        java.lang.String[] getTopicExpressionDialectsArray();

+        

+        /**

+         * Gets ith "TopicExpressionDialects" element

+         */

+        java.lang.String getTopicExpressionDialectsArray(int i);

+        

+        /**

+         * Gets (as xml) array of all "TopicExpressionDialects" elements

+         */

+        org.apache.xmlbeans.XmlAnyURI[] xgetTopicExpressionDialectsArray();

+        

+        /**

+         * Gets (as xml) ith "TopicExpressionDialects" element

+         */

+        org.apache.xmlbeans.XmlAnyURI xgetTopicExpressionDialectsArray(int i);

+        

+        /**

+         * Returns number of "TopicExpressionDialects" element

+         */

+        int sizeOfTopicExpressionDialectsArray();

+        

+        /**

+         * Sets array of all "TopicExpressionDialects" element

+         */

+        void setTopicExpressionDialectsArray(java.lang.String[] 
topicExpressionDialectsArray);

+        

+        /**

+         * Sets ith "TopicExpressionDialects" element

+         */

+        void setTopicExpressionDialectsArray(int i, java.lang.String 
topicExpressionDialects);

+        

+        /**

+         * Sets (as xml) array of all "TopicExpressionDialects" element

+         */

+        void 
xsetTopicExpressionDialectsArray(org.apache.xmlbeans.XmlAnyURI[]topicExpressionDialectsArray);

+        

+        /**

+         * Sets (as xml) ith "TopicExpressionDialects" element

+         */

+        void xsetTopicExpressionDialectsArray(int i, 
org.apache.xmlbeans.XmlAnyURI topicExpressionDialects);

+        

+        /**

+         * Inserts the value as the ith "TopicExpressionDialects" element

+         */

+        void insertTopicExpressionDialects(int i, java.lang.String 
topicExpressionDialects);

+        

+        /**

+         * Appends the value as the last "TopicExpressionDialects" element

+         */

+        void addTopicExpressionDialects(java.lang.String 
topicExpressionDialects);

+        

+        /**

+         * Inserts and returns a new empty value (as xml) as the ith 
"TopicExpressionDialects" element

+         */

+        org.apache.xmlbeans.XmlAnyURI insertNewTopicExpressionDialects(int i);

+        

+        /**

+         * Appends and returns a new empty value (as xml) as the last 
"TopicExpressionDialects" element

+         */

+        org.apache.xmlbeans.XmlAnyURI addNewTopicExpressionDialects();

+        

+        /**

+         * Removes the ith "TopicExpressionDialects" element

+         */

+        void removeTopicExpressionDialects(int i);

+        

+        /**

+         * Gets the "ResourceId" element

+         */

+        java.lang.String getResourceId();

+        

+        /**

+         * Gets (as xml) the "ResourceId" element

+         */

+        org.apache.xmlbeans.XmlAnyURI xgetResourceId();

+        

+        /**

+         * Sets the "ResourceId" element

+         */

+        void setResourceId(java.lang.String resourceId);

+        

+        /**

+         * Sets (as xml) the "ResourceId" element

+         */

+        void xsetResourceId(org.apache.xmlbeans.XmlAnyURI resourceId);

+        

+        /**

+         * Gets array of all "ManageabilityCapability" elements

+         */

+        java.lang.String[] getManageabilityCapabilityArray();

+        

+        /**

+         * Gets ith "ManageabilityCapability" element

+         */

+        java.lang.String getManageabilityCapabilityArray(int i);

+        

+        /**

+         * Gets (as xml) array of all "ManageabilityCapability" elements

+         */

+        org.apache.xmlbeans.XmlAnyURI[] xgetManageabilityCapabilityArray();

+        

+        /**

+         * Gets (as xml) ith "ManageabilityCapability" element

+         */

+        org.apache.xmlbeans.XmlAnyURI xgetManageabilityCapabilityArray(int i);

+        

+        /**

+         * Returns number of "ManageabilityCapability" element

+         */

+        int sizeOfManageabilityCapabilityArray();

+        

+        /**

+         * Sets array of all "ManageabilityCapability" element

+         */

+        void setManageabilityCapabilityArray(java.lang.String[] 
manageabilityCapabilityArray);

+        

+        /**

+         * Sets ith "ManageabilityCapability" element

+         */

+        void setManageabilityCapabilityArray(int i, java.lang.String 
manageabilityCapability);

+        

+        /**

+         * Sets (as xml) array of all "ManageabilityCapability" element

+         */

+        void 
xsetManageabilityCapabilityArray(org.apache.xmlbeans.XmlAnyURI[]manageabilityCapabilityArray);

+        

+        /**

+         * Sets (as xml) ith "ManageabilityCapability" element

+         */

+        void xsetManageabilityCapabilityArray(int i, 
org.apache.xmlbeans.XmlAnyURI manageabilityCapability);

+        

+        /**

+         * Inserts the value as the ith "ManageabilityCapability" element

+         */

+        void insertManageabilityCapability(int i, java.lang.String 
manageabilityCapability);

+        

+        /**

+         * Appends the value as the last "ManageabilityCapability" element

+         */

+        void addManageabilityCapability(java.lang.String 
manageabilityCapability);

+        

+        /**

+         * Inserts and returns a new empty value (as xml) as the ith 
"ManageabilityCapability" element

+         */

+        org.apache.xmlbeans.XmlAnyURI insertNewManageabilityCapability(int i);

+        

+        /**

+         * Appends and returns a new empty value (as xml) as the last 
"ManageabilityCapability" element

+         */

+        org.apache.xmlbeans.XmlAnyURI addNewManageabilityCapability();

+        

+        /**

+         * Removes the ith "ManageabilityCapability" element

+         */

+        void removeManageabilityCapability(int i);

+        

+        /**

+         * Gets the "Caption" element

+         */

+        org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.LangString 
getCaption();

+        

+        /**

+         * Sets the "Caption" element

+         */

+        void 
setCaption(org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.LangString 
caption);

+        

+        /**

+         * Appends and returns a new empty "Caption" element

+         */

+        org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.LangString 
addNewCaption();

+        

+        /**

+         * Gets array of all "Description" elements

+         */

+        org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.LangString[] 
getDescriptionArray();

+        

+        /**

+         * Gets ith "Description" element

+         */

+        org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.LangString 
getDescriptionArray(int i);

+        

+        /**

+         * Returns number of "Description" element

+         */

+        int sizeOfDescriptionArray();

+        

+        /**

+         * Sets array of all "Description" element

+         */

+        void 
setDescriptionArray(org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.LangString[]
 descriptionArray);

+        

+        /**

+         * Sets ith "Description" element

+         */

+        void setDescriptionArray(int i, 
org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.LangString description);

+        

+        /**

+         * Inserts and returns a new empty value (as xml) as the ith 
"Description" element

+         */

+        org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.LangString 
insertNewDescription(int i);

+        

+        /**

+         * Appends and returns a new empty value (as xml) as the last 
"Description" element

+         */

+        org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.LangString 
addNewDescription();

+        

+        /**

+         * Removes the ith "Description" element

+         */

+        void removeDescription(int i);

+        

+        /**

+         * Gets the "Version" element

+         */

+        java.lang.String getVersion();

+        

+        /**

+         * Gets (as xml) the "Version" element

+         */

+        org.apache.xmlbeans.XmlString xgetVersion();

+        

+        /**

+         * True if has "Version" element

+         */

+        boolean isSetVersion();

+        

+        /**

+         * Sets the "Version" element

+         */

+        void setVersion(java.lang.String version);

+        

+        /**

+         * Sets (as xml) the "Version" element

+         */

+        void xsetVersion(org.apache.xmlbeans.XmlString version);

+        

+        /**

+         * Unsets the "Version" element

+         */

+        void unsetVersion();

+        

+        /**

+         * Gets the "OperationalStatus" element

+         */

+        
org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.OperationalStatusDocument.OperationalStatus.Enum
 getOperationalStatus();

+        

+        /**

+         * Gets (as xml) the "OperationalStatus" element

+         */

+        
org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.OperationalStatusDocument.OperationalStatus
 xgetOperationalStatus();

+        

+        /**

+         * Sets the "OperationalStatus" element

+         */

+        void 
setOperationalStatus(org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.OperationalStatusDocument.OperationalStatus.Enum
 operationalStatus);

+        

+        /**

+         * Sets (as xml) the "OperationalStatus" element

+         */

+        void 
xsetOperationalStatus(org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.OperationalStatusDocument.OperationalStatus
 operationalStatus);

+        

+        /**

+         * Gets the "CurrentTime" element

+         */

+        java.util.Calendar getCurrentTime();

+        

+        /**

+         * Gets (as xml) the "CurrentTime" element

+         */

+        org.apache.xmlbeans.XmlDateTime xgetCurrentTime();

+        

+        /**

+         * Sets the "CurrentTime" element

+         */

+        void setCurrentTime(java.util.Calendar currentTime);

+        

+        /**

+         * Sets (as xml) the "CurrentTime" element

+         */

+        void xsetCurrentTime(org.apache.xmlbeans.XmlDateTime currentTime);

+        

+        /**

+         * Gets array of all "Relationship" elements

+         */

+        
org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.RelationshipType[] 
getRelationshipArray();

+        

+        /**

+         * Gets ith "Relationship" element

+         */

+        org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.RelationshipType 
getRelationshipArray(int i);

+        

+        /**

+         * Returns number of "Relationship" element

+         */

+        int sizeOfRelationshipArray();

+        

+        /**

+         * Sets array of all "Relationship" element

+         */

+        void 
setRelationshipArray(org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.RelationshipType[]
 relationshipArray);

+        

+        /**

+         * Sets ith "Relationship" element

+         */

+        void setRelationshipArray(int i, 
org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.RelationshipType 
relationship);

+        

+        /**

+         * Inserts and returns a new empty value (as xml) as the ith 
"Relationship" element

+         */

+        org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.RelationshipType 
insertNewRelationship(int i);

+        

+        /**

+         * Appends and returns a new empty value (as xml) as the last 
"Relationship" element

+         */

+        org.oasisOpen.docs.wsdm.x2004.x12.muws.wsdmMuwsPart2.RelationshipType 
addNewRelationship();

+        

+        /**

+         * Removes the ith "Relationship" element

+         */

+        void removeRelationship(int i);

+        

+        /**

+         * Gets the "ResourceType" element

+         */

+        java.lang.String getResourceType();

+        

+        /**

+         * Gets (as xml) the "ResourceType" element

+         */

+        org.apache.xmlbeans.XmlAnyURI xgetResourceType();

+        

+        /**

+         * Sets the "ResourceType" element

+         */

+        void setResourceType(java.lang.String resourceType);

+        

+        /**

+         * Sets (as xml) the "ResourceType" element

+         */

+        void xsetResourceType(org.apache.xmlbeans.XmlAnyURI resourceType);

+        

+        /**

+         * Gets the "ResourceHostname" element

+         */

+        java.lang.String getResourceHostname();

+        

+        /**

+         * Gets (as xml) the "ResourceHostname" element

+         */

+        org.apache.xmlbeans.XmlString xgetResourceHostname();

+        

+        /**

+         * Sets the "ResourceHostname" element

+         */

+        void setResourceHostname(java.lang.String resourceHostname);

+        

+        /**

+         * Sets (as xml) the "ResourceHostname" element

+         */

+        void xsetResourceHostname(org.apache.xmlbeans.XmlString 
resourceHostname);

+        

+        /**

+         * Gets the "ServerName" element

+         */

+        java.lang.String getServerName();

+        

+        /**

+         * Gets (as xml) the "ServerName" element

+         */

+        org.apache.xmlbeans.XmlString xgetServerName();

+        

+        /**

+         * Sets the "ServerName" element

+         */

+        void setServerName(java.lang.String serverName);

+        

+        /**

+         * Sets (as xml) the "ServerName" element

+         */

+        void xsetServerName(org.apache.xmlbeans.XmlString serverName);

+        

+        /**

+         * Gets the "ListenPort" element

+         */

+        long getListenPort();

+        

+        /**

+         * Gets (as xml) the "ListenPort" element

+         */

+        org.apache.xmlbeans.XmlUnsignedInt xgetListenPort();

+        

+        /**

+         * Sets the "ListenPort" element

+         */

+        void setListenPort(long listenPort);

+        

+        /**

+         * Sets (as xml) the "ListenPort" element

+         */

+        void xsetListenPort(org.apache.xmlbeans.XmlUnsignedInt listenPort);

+        

+        /**

+         * A factory class with static methods for creating instances

+         * of this type.

+         */

+        

+        public static final class Factory

+        {

+            public static 
org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument.IntegrationServerProperties
 newInstance() {

+              return 
(org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument.IntegrationServerProperties)
 org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); 
}

+            

+            public static 
org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument.IntegrationServerProperties
 newInstance(org.apache.xmlbeans.XmlOptions options) {

+              return 
(org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument.IntegrationServerProperties)
 org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options 
); }

+            

+            private Factory() { } // No instance of this class allowed

+        }

+    }

+    

+    /**

+     * A factory class with static methods for creating instances

+     * of this type.

+     */

+    

+    public static final class Factory

+    {

+        public static 
org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument
 newInstance() {

+          return 
(org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument)
 org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); 
}

+        

+        public static 
org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument
 newInstance(org.apache.xmlbeans.XmlOptions options) {

+          return 
(org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument)
 org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options 
); }

+        

+        /** @param xmlAsString the string value to parse */

+        public static 
org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument
 parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {

+          return 
(org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument)
 org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, 
null ); }

+        

+        public static 
org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument
 parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) 
throws org.apache.xmlbeans.XmlException {

+          return 
(org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument)
 org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, 
options ); }

+        

+        /** @param file the file from which to load an xml document */

+        public static 
org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument
 parse(java.io.File file) throws org.apache.xmlbeans.XmlException, 
java.io.IOException {

+          return 
(org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument)
 org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); 
}

+        

+        public static 
org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument
 parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws 
org.apache.xmlbeans.XmlException, java.io.IOException {

+          return 
(org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument)
 org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options 
); }

+        

+        public static 
org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument
 parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, 
java.io.IOException {

+          return 
(org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument)
 org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }

+        

+        public static 
org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument
 parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws 
org.apache.xmlbeans.XmlException, java.io.IOException {

+          return 
(org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument)
 org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); 
}

+        

+        public static 
org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument
 parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, 
java.io.IOException {

+          return 
(org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument)
 org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }

+        

+        public static 
org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument
 parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws 
org.apache.xmlbeans.XmlException, java.io.IOException {

+          return 
(org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument)
 org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options 
); }

+        

+        public static 
org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument
 parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, 
java.io.IOException {

+          return 
(org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument)
 org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }

+        

+        public static 
org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument
 parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws 
org.apache.xmlbeans.XmlException, java.io.IOException {

+          return 
(org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument)
 org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); 
}

+        

+        public static 
org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument
 parse(javax.xml.stream.XMLStreamReader sr) throws 
org.apache.xmlbeans.XmlException {

+          return 
(org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument)
 org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }

+        

+        public static 
org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument
 parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions 
options) throws org.apache.xmlbeans.XmlException {

+          return 
(org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument)
 org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options 
); }

+        

+        public static 
org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument
 parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {

+          return 
(org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument)
 org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); 
}

+        

+        public static 
org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument
 parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws 
org.apache.xmlbeans.XmlException {

+          return 
(org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument)
 org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options 
); }

+        

+        public static 
org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument
 parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws 
org.apache.xmlbeans.XmlException, 
org.apache.xmlbeans.xml.stream.XMLStreamException {

+          return 
(org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument)
 org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }

+        

+        public static 
org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument
 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 
(org.apache.ws.muse.example.integrationserver.IntegrationServerPropertiesDocument)
 org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options 
); }

+        

+        /** @deprecated [EMAIL PROTECTED] XMLInputStream} */

+        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 ); }

+        

+        /** @deprecated [EMAIL PROTECTED] XMLInputStream} */

+        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

+    }

+}




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to