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 ip...@apache.org on 2005/06/21 01:28:44 UTC

svn commit: r191585 [9/30] - in /incubator/muse/site: ./ dev_guide/ example/ example/epr/ example/images/ example/lib/ example/logic/ example/logic/src/ example/logic/src/java/ example/logic/src/java/org/ example/logic/src/java/org/apache/ example/logi...

Added: incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/TotalNumberOfAbortedProcessesDocument.java
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/TotalNumberOfAbortedProcessesDocument.java?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/TotalNumberOfAbortedProcessesDocument.java (added)
+++ incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/TotalNumberOfAbortedProcessesDocument.java Mon Jun 20 16:28:31 2005
@@ -0,0 +1,109 @@
+/*
+ * An XML document type.
+ * Localname: TotalNumberOfAbortedProcesses
+ * Namespace: http://ws.apache.org/muse/example/businessprocesstype/properties
+ * Java type: org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.ws.muse.example.businessprocesstype.properties;
+
+
+/**
+ * A document containing one TotalNumberOfAbortedProcesses(@http://ws.apache.org/muse/example/businessprocesstype/properties) element.
+ *
+ * This is a complex type.
+ */
+public interface TotalNumberOfAbortedProcessesDocument extends org.apache.xmlbeans.XmlObject
+{
+    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)schema.system.s995331AFDCF0CA6EE51B027935DBFB96.TypeSystemHolder.typeSystem.resolveHandle("totalnumberofabortedprocesses584fdoctype");
+    
+    /**
+     * Gets the "TotalNumberOfAbortedProcesses" element
+     */
+    org.apache.ws.namespaces.muse.muwsExt1.LongMetric getTotalNumberOfAbortedProcesses();
+    
+    /**
+     * Sets the "TotalNumberOfAbortedProcesses" element
+     */
+    void setTotalNumberOfAbortedProcesses(org.apache.ws.namespaces.muse.muwsExt1.LongMetric totalNumberOfAbortedProcesses);
+    
+    /**
+     * Appends and returns a new empty "TotalNumberOfAbortedProcesses" element
+     */
+    org.apache.ws.namespaces.muse.muwsExt1.LongMetric addNewTotalNumberOfAbortedProcesses();
+    
+    /**
+     * A factory class with static methods for creating instances
+     * of this type.
+     */
+    
+    public static final class Factory
+    {
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument newInstance() {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument newInstance(org.apache.xmlbeans.XmlOptions options) {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
+        
+        /** @param xmlAsString the string value to parse */
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument) 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.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument 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.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument 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.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
+        
+        /** @deprecated {@link 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 {@link 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/businessprocesstype/properties/TotalNumberOfCompletedProcessesDocument.java
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/TotalNumberOfCompletedProcessesDocument.java?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/TotalNumberOfCompletedProcessesDocument.java (added)
+++ incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/TotalNumberOfCompletedProcessesDocument.java Mon Jun 20 16:28:31 2005
@@ -0,0 +1,109 @@
+/*
+ * An XML document type.
+ * Localname: TotalNumberOfCompletedProcesses
+ * Namespace: http://ws.apache.org/muse/example/businessprocesstype/properties
+ * Java type: org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.ws.muse.example.businessprocesstype.properties;
+
+
+/**
+ * A document containing one TotalNumberOfCompletedProcesses(@http://ws.apache.org/muse/example/businessprocesstype/properties) element.
+ *
+ * This is a complex type.
+ */
+public interface TotalNumberOfCompletedProcessesDocument extends org.apache.xmlbeans.XmlObject
+{
+    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)schema.system.s995331AFDCF0CA6EE51B027935DBFB96.TypeSystemHolder.typeSystem.resolveHandle("totalnumberofcompletedprocesses7e8bdoctype");
+    
+    /**
+     * Gets the "TotalNumberOfCompletedProcesses" element
+     */
+    org.apache.ws.namespaces.muse.muwsExt1.LongMetric getTotalNumberOfCompletedProcesses();
+    
+    /**
+     * Sets the "TotalNumberOfCompletedProcesses" element
+     */
+    void setTotalNumberOfCompletedProcesses(org.apache.ws.namespaces.muse.muwsExt1.LongMetric totalNumberOfCompletedProcesses);
+    
+    /**
+     * Appends and returns a new empty "TotalNumberOfCompletedProcesses" element
+     */
+    org.apache.ws.namespaces.muse.muwsExt1.LongMetric addNewTotalNumberOfCompletedProcesses();
+    
+    /**
+     * A factory class with static methods for creating instances
+     * of this type.
+     */
+    
+    public static final class Factory
+    {
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument newInstance() {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument newInstance(org.apache.xmlbeans.XmlOptions options) {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
+        
+        /** @param xmlAsString the string value to parse */
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument) 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.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument 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.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument 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.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
+        
+        /** @deprecated {@link 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 {@link 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/businessprocesstype/properties/TotalNumberOfTerminatedProcessesDocument.java
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/TotalNumberOfTerminatedProcessesDocument.java?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/TotalNumberOfTerminatedProcessesDocument.java (added)
+++ incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/TotalNumberOfTerminatedProcessesDocument.java Mon Jun 20 16:28:31 2005
@@ -0,0 +1,109 @@
+/*
+ * An XML document type.
+ * Localname: TotalNumberOfTerminatedProcesses
+ * Namespace: http://ws.apache.org/muse/example/businessprocesstype/properties
+ * Java type: org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.ws.muse.example.businessprocesstype.properties;
+
+
+/**
+ * A document containing one TotalNumberOfTerminatedProcesses(@http://ws.apache.org/muse/example/businessprocesstype/properties) element.
+ *
+ * This is a complex type.
+ */
+public interface TotalNumberOfTerminatedProcessesDocument extends org.apache.xmlbeans.XmlObject
+{
+    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)schema.system.s995331AFDCF0CA6EE51B027935DBFB96.TypeSystemHolder.typeSystem.resolveHandle("totalnumberofterminatedprocesses33d9doctype");
+    
+    /**
+     * Gets the "TotalNumberOfTerminatedProcesses" element
+     */
+    org.apache.ws.namespaces.muse.muwsExt1.LongMetric getTotalNumberOfTerminatedProcesses();
+    
+    /**
+     * Sets the "TotalNumberOfTerminatedProcesses" element
+     */
+    void setTotalNumberOfTerminatedProcesses(org.apache.ws.namespaces.muse.muwsExt1.LongMetric totalNumberOfTerminatedProcesses);
+    
+    /**
+     * Appends and returns a new empty "TotalNumberOfTerminatedProcesses" element
+     */
+    org.apache.ws.namespaces.muse.muwsExt1.LongMetric addNewTotalNumberOfTerminatedProcesses();
+    
+    /**
+     * A factory class with static methods for creating instances
+     * of this type.
+     */
+    
+    public static final class Factory
+    {
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument newInstance() {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument newInstance(org.apache.xmlbeans.XmlOptions options) {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
+        
+        /** @param xmlAsString the string value to parse */
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument) 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.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument 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.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
+        
+        public static org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument 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.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
+        
+        /** @deprecated {@link 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 {@link 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/businessprocesstype/properties/impl/NumberOfRunningProcessesDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/NumberOfRunningProcessesDocumentImpl.java?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/NumberOfRunningProcessesDocumentImpl.java (added)
+++ incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/NumberOfRunningProcessesDocumentImpl.java Mon Jun 20 16:28:31 2005
@@ -0,0 +1,76 @@
+/*
+ * An XML document type.
+ * Localname: NumberOfRunningProcesses
+ * Namespace: http://ws.apache.org/muse/example/businessprocesstype/properties
+ * Java type: org.apache.ws.muse.example.businessprocesstype.properties.NumberOfRunningProcessesDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.ws.muse.example.businessprocesstype.properties.impl;
+/**
+ * A document containing one NumberOfRunningProcesses(@http://ws.apache.org/muse/example/businessprocesstype/properties) element.
+ *
+ * This is a complex type.
+ */
+public class NumberOfRunningProcessesDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ws.muse.example.businessprocesstype.properties.NumberOfRunningProcessesDocument
+{
+    
+    public NumberOfRunningProcessesDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName NUMBEROFRUNNINGPROCESSES$0 = 
+        new javax.xml.namespace.QName("http://ws.apache.org/muse/example/businessprocesstype/properties", "NumberOfRunningProcesses");
+    
+    
+    /**
+     * Gets the "NumberOfRunningProcesses" element
+     */
+    public org.apache.ws.namespaces.muse.muwsExt1.IntMetric getNumberOfRunningProcesses()
+    {
+        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(NUMBEROFRUNNINGPROCESSES$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "NumberOfRunningProcesses" element
+     */
+    public void setNumberOfRunningProcesses(org.apache.ws.namespaces.muse.muwsExt1.IntMetric numberOfRunningProcesses)
+    {
+        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(NUMBEROFRUNNINGPROCESSES$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.ws.namespaces.muse.muwsExt1.IntMetric)get_store().add_element_user(NUMBEROFRUNNINGPROCESSES$0);
+            }
+            target.set(numberOfRunningProcesses);
+        }
+    }
+    
+    /**
+     * Appends and returns a new empty "NumberOfRunningProcesses" element
+     */
+    public org.apache.ws.namespaces.muse.muwsExt1.IntMetric addNewNumberOfRunningProcesses()
+    {
+        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(NUMBEROFRUNNINGPROCESSES$0);
+            return target;
+        }
+    }
+}

Added: incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/NumberOfSuspendedProcessesDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/NumberOfSuspendedProcessesDocumentImpl.java?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/NumberOfSuspendedProcessesDocumentImpl.java (added)
+++ incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/NumberOfSuspendedProcessesDocumentImpl.java Mon Jun 20 16:28:31 2005
@@ -0,0 +1,76 @@
+/*
+ * An XML document type.
+ * Localname: NumberOfSuspendedProcesses
+ * Namespace: http://ws.apache.org/muse/example/businessprocesstype/properties
+ * Java type: org.apache.ws.muse.example.businessprocesstype.properties.NumberOfSuspendedProcessesDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.ws.muse.example.businessprocesstype.properties.impl;
+/**
+ * A document containing one NumberOfSuspendedProcesses(@http://ws.apache.org/muse/example/businessprocesstype/properties) element.
+ *
+ * This is a complex type.
+ */
+public class NumberOfSuspendedProcessesDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ws.muse.example.businessprocesstype.properties.NumberOfSuspendedProcessesDocument
+{
+    
+    public NumberOfSuspendedProcessesDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName NUMBEROFSUSPENDEDPROCESSES$0 = 
+        new javax.xml.namespace.QName("http://ws.apache.org/muse/example/businessprocesstype/properties", "NumberOfSuspendedProcesses");
+    
+    
+    /**
+     * Gets the "NumberOfSuspendedProcesses" element
+     */
+    public org.apache.ws.namespaces.muse.muwsExt1.IntMetric getNumberOfSuspendedProcesses()
+    {
+        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(NUMBEROFSUSPENDEDPROCESSES$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "NumberOfSuspendedProcesses" element
+     */
+    public void setNumberOfSuspendedProcesses(org.apache.ws.namespaces.muse.muwsExt1.IntMetric numberOfSuspendedProcesses)
+    {
+        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(NUMBEROFSUSPENDEDPROCESSES$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.ws.namespaces.muse.muwsExt1.IntMetric)get_store().add_element_user(NUMBEROFSUSPENDEDPROCESSES$0);
+            }
+            target.set(numberOfSuspendedProcesses);
+        }
+    }
+    
+    /**
+     * Appends and returns a new empty "NumberOfSuspendedProcesses" element
+     */
+    public org.apache.ws.namespaces.muse.muwsExt1.IntMetric addNewNumberOfSuspendedProcesses()
+    {
+        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(NUMBEROFSUSPENDEDPROCESSES$0);
+            return target;
+        }
+    }
+}

Added: incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/ResumeDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/ResumeDocumentImpl.java?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/ResumeDocumentImpl.java (added)
+++ incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/ResumeDocumentImpl.java Mon Jun 20 16:28:31 2005
@@ -0,0 +1,94 @@
+/*
+ * An XML document type.
+ * Localname: Resume
+ * Namespace: http://ws.apache.org/muse/example/businessprocesstype/properties
+ * Java type: org.apache.ws.muse.example.businessprocesstype.properties.ResumeDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.ws.muse.example.businessprocesstype.properties.impl;
+/**
+ * A document containing one Resume(@http://ws.apache.org/muse/example/businessprocesstype/properties) element.
+ *
+ * This is a complex type.
+ */
+public class ResumeDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ws.muse.example.businessprocesstype.properties.ResumeDocument
+{
+    
+    public ResumeDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName RESUME$0 = 
+        new javax.xml.namespace.QName("http://ws.apache.org/muse/example/businessprocesstype/properties", "Resume");
+    
+    
+    /**
+     * Gets the "Resume" element
+     */
+    public java.lang.String getResume()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(RESUME$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target.getStringValue();
+        }
+    }
+    
+    /**
+     * Gets (as xml) the "Resume" element
+     */
+    public org.apache.xmlbeans.XmlString xgetResume()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlString target = null;
+            target = (org.apache.xmlbeans.XmlString)get_store().find_element_user(RESUME$0, 0);
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "Resume" element
+     */
+    public void setResume(java.lang.String resume)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(RESUME$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(RESUME$0);
+            }
+            target.setStringValue(resume);
+        }
+    }
+    
+    /**
+     * Sets (as xml) the "Resume" element
+     */
+    public void xsetResume(org.apache.xmlbeans.XmlString resume)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlString target = null;
+            target = (org.apache.xmlbeans.XmlString)get_store().find_element_user(RESUME$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.XmlString)get_store().add_element_user(RESUME$0);
+            }
+            target.set(resume);
+        }
+    }
+}

Added: incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/ResumeResponseDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/ResumeResponseDocumentImpl.java?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/ResumeResponseDocumentImpl.java (added)
+++ incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/ResumeResponseDocumentImpl.java Mon Jun 20 16:28:31 2005
@@ -0,0 +1,91 @@
+/*
+ * An XML document type.
+ * Localname: ResumeResponse
+ * Namespace: http://ws.apache.org/muse/example/businessprocesstype/properties
+ * Java type: org.apache.ws.muse.example.businessprocesstype.properties.ResumeResponseDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.ws.muse.example.businessprocesstype.properties.impl;
+/**
+ * A document containing one ResumeResponse(@http://ws.apache.org/muse/example/businessprocesstype/properties) element.
+ *
+ * This is a complex type.
+ */
+public class ResumeResponseDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ws.muse.example.businessprocesstype.properties.ResumeResponseDocument
+{
+    
+    public ResumeResponseDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName RESUMERESPONSE$0 = 
+        new javax.xml.namespace.QName("http://ws.apache.org/muse/example/businessprocesstype/properties", "ResumeResponse");
+    
+    
+    /**
+     * Gets the "ResumeResponse" element
+     */
+    public org.apache.ws.muse.example.businessprocesstype.properties.ResumeResponseDocument.ResumeResponse getResumeResponse()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.businessprocesstype.properties.ResumeResponseDocument.ResumeResponse target = null;
+            target = (org.apache.ws.muse.example.businessprocesstype.properties.ResumeResponseDocument.ResumeResponse)get_store().find_element_user(RESUMERESPONSE$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "ResumeResponse" element
+     */
+    public void setResumeResponse(org.apache.ws.muse.example.businessprocesstype.properties.ResumeResponseDocument.ResumeResponse resumeResponse)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.businessprocesstype.properties.ResumeResponseDocument.ResumeResponse target = null;
+            target = (org.apache.ws.muse.example.businessprocesstype.properties.ResumeResponseDocument.ResumeResponse)get_store().find_element_user(RESUMERESPONSE$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.ws.muse.example.businessprocesstype.properties.ResumeResponseDocument.ResumeResponse)get_store().add_element_user(RESUMERESPONSE$0);
+            }
+            target.set(resumeResponse);
+        }
+    }
+    
+    /**
+     * Appends and returns a new empty "ResumeResponse" element
+     */
+    public org.apache.ws.muse.example.businessprocesstype.properties.ResumeResponseDocument.ResumeResponse addNewResumeResponse()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.businessprocesstype.properties.ResumeResponseDocument.ResumeResponse target = null;
+            target = (org.apache.ws.muse.example.businessprocesstype.properties.ResumeResponseDocument.ResumeResponse)get_store().add_element_user(RESUMERESPONSE$0);
+            return target;
+        }
+    }
+    /**
+     * An XML ResumeResponse(@http://ws.apache.org/muse/example/businessprocesstype/properties).
+     *
+     * This is a complex type.
+     */
+    public static class ResumeResponseImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ws.muse.example.businessprocesstype.properties.ResumeResponseDocument.ResumeResponse
+    {
+        
+        public ResumeResponseImpl(org.apache.xmlbeans.SchemaType sType)
+        {
+            super(sType);
+        }
+        
+        
+    }
+}

Added: incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/SuspendDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/SuspendDocumentImpl.java?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/SuspendDocumentImpl.java (added)
+++ incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/SuspendDocumentImpl.java Mon Jun 20 16:28:31 2005
@@ -0,0 +1,94 @@
+/*
+ * An XML document type.
+ * Localname: Suspend
+ * Namespace: http://ws.apache.org/muse/example/businessprocesstype/properties
+ * Java type: org.apache.ws.muse.example.businessprocesstype.properties.SuspendDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.ws.muse.example.businessprocesstype.properties.impl;
+/**
+ * A document containing one Suspend(@http://ws.apache.org/muse/example/businessprocesstype/properties) element.
+ *
+ * This is a complex type.
+ */
+public class SuspendDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ws.muse.example.businessprocesstype.properties.SuspendDocument
+{
+    
+    public SuspendDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName SUSPEND$0 = 
+        new javax.xml.namespace.QName("http://ws.apache.org/muse/example/businessprocesstype/properties", "Suspend");
+    
+    
+    /**
+     * Gets the "Suspend" element
+     */
+    public java.lang.String getSuspend()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(SUSPEND$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target.getStringValue();
+        }
+    }
+    
+    /**
+     * Gets (as xml) the "Suspend" element
+     */
+    public org.apache.xmlbeans.XmlString xgetSuspend()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlString target = null;
+            target = (org.apache.xmlbeans.XmlString)get_store().find_element_user(SUSPEND$0, 0);
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "Suspend" element
+     */
+    public void setSuspend(java.lang.String suspend)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(SUSPEND$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(SUSPEND$0);
+            }
+            target.setStringValue(suspend);
+        }
+    }
+    
+    /**
+     * Sets (as xml) the "Suspend" element
+     */
+    public void xsetSuspend(org.apache.xmlbeans.XmlString suspend)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlString target = null;
+            target = (org.apache.xmlbeans.XmlString)get_store().find_element_user(SUSPEND$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.XmlString)get_store().add_element_user(SUSPEND$0);
+            }
+            target.set(suspend);
+        }
+    }
+}

Added: incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/SuspendResponseDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/SuspendResponseDocumentImpl.java?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/SuspendResponseDocumentImpl.java (added)
+++ incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/SuspendResponseDocumentImpl.java Mon Jun 20 16:28:31 2005
@@ -0,0 +1,91 @@
+/*
+ * An XML document type.
+ * Localname: SuspendResponse
+ * Namespace: http://ws.apache.org/muse/example/businessprocesstype/properties
+ * Java type: org.apache.ws.muse.example.businessprocesstype.properties.SuspendResponseDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.ws.muse.example.businessprocesstype.properties.impl;
+/**
+ * A document containing one SuspendResponse(@http://ws.apache.org/muse/example/businessprocesstype/properties) element.
+ *
+ * This is a complex type.
+ */
+public class SuspendResponseDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ws.muse.example.businessprocesstype.properties.SuspendResponseDocument
+{
+    
+    public SuspendResponseDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName SUSPENDRESPONSE$0 = 
+        new javax.xml.namespace.QName("http://ws.apache.org/muse/example/businessprocesstype/properties", "SuspendResponse");
+    
+    
+    /**
+     * Gets the "SuspendResponse" element
+     */
+    public org.apache.ws.muse.example.businessprocesstype.properties.SuspendResponseDocument.SuspendResponse getSuspendResponse()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.businessprocesstype.properties.SuspendResponseDocument.SuspendResponse target = null;
+            target = (org.apache.ws.muse.example.businessprocesstype.properties.SuspendResponseDocument.SuspendResponse)get_store().find_element_user(SUSPENDRESPONSE$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "SuspendResponse" element
+     */
+    public void setSuspendResponse(org.apache.ws.muse.example.businessprocesstype.properties.SuspendResponseDocument.SuspendResponse suspendResponse)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.businessprocesstype.properties.SuspendResponseDocument.SuspendResponse target = null;
+            target = (org.apache.ws.muse.example.businessprocesstype.properties.SuspendResponseDocument.SuspendResponse)get_store().find_element_user(SUSPENDRESPONSE$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.ws.muse.example.businessprocesstype.properties.SuspendResponseDocument.SuspendResponse)get_store().add_element_user(SUSPENDRESPONSE$0);
+            }
+            target.set(suspendResponse);
+        }
+    }
+    
+    /**
+     * Appends and returns a new empty "SuspendResponse" element
+     */
+    public org.apache.ws.muse.example.businessprocesstype.properties.SuspendResponseDocument.SuspendResponse addNewSuspendResponse()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.businessprocesstype.properties.SuspendResponseDocument.SuspendResponse target = null;
+            target = (org.apache.ws.muse.example.businessprocesstype.properties.SuspendResponseDocument.SuspendResponse)get_store().add_element_user(SUSPENDRESPONSE$0);
+            return target;
+        }
+    }
+    /**
+     * An XML SuspendResponse(@http://ws.apache.org/muse/example/businessprocesstype/properties).
+     *
+     * This is a complex type.
+     */
+    public static class SuspendResponseImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ws.muse.example.businessprocesstype.properties.SuspendResponseDocument.SuspendResponse
+    {
+        
+        public SuspendResponseImpl(org.apache.xmlbeans.SchemaType sType)
+        {
+            super(sType);
+        }
+        
+        
+    }
+}

Added: incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/TerminateDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/TerminateDocumentImpl.java?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/TerminateDocumentImpl.java (added)
+++ incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/TerminateDocumentImpl.java Mon Jun 20 16:28:31 2005
@@ -0,0 +1,94 @@
+/*
+ * An XML document type.
+ * Localname: Terminate
+ * Namespace: http://ws.apache.org/muse/example/businessprocesstype/properties
+ * Java type: org.apache.ws.muse.example.businessprocesstype.properties.TerminateDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.ws.muse.example.businessprocesstype.properties.impl;
+/**
+ * A document containing one Terminate(@http://ws.apache.org/muse/example/businessprocesstype/properties) element.
+ *
+ * This is a complex type.
+ */
+public class TerminateDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ws.muse.example.businessprocesstype.properties.TerminateDocument
+{
+    
+    public TerminateDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName TERMINATE$0 = 
+        new javax.xml.namespace.QName("http://ws.apache.org/muse/example/businessprocesstype/properties", "Terminate");
+    
+    
+    /**
+     * Gets the "Terminate" element
+     */
+    public java.lang.String getTerminate()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(TERMINATE$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target.getStringValue();
+        }
+    }
+    
+    /**
+     * Gets (as xml) the "Terminate" element
+     */
+    public org.apache.xmlbeans.XmlString xgetTerminate()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlString target = null;
+            target = (org.apache.xmlbeans.XmlString)get_store().find_element_user(TERMINATE$0, 0);
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "Terminate" element
+     */
+    public void setTerminate(java.lang.String terminate)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(TERMINATE$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(TERMINATE$0);
+            }
+            target.setStringValue(terminate);
+        }
+    }
+    
+    /**
+     * Sets (as xml) the "Terminate" element
+     */
+    public void xsetTerminate(org.apache.xmlbeans.XmlString terminate)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlString target = null;
+            target = (org.apache.xmlbeans.XmlString)get_store().find_element_user(TERMINATE$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.XmlString)get_store().add_element_user(TERMINATE$0);
+            }
+            target.set(terminate);
+        }
+    }
+}

Added: incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/TerminateResponseDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/TerminateResponseDocumentImpl.java?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/TerminateResponseDocumentImpl.java (added)
+++ incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/TerminateResponseDocumentImpl.java Mon Jun 20 16:28:31 2005
@@ -0,0 +1,91 @@
+/*
+ * An XML document type.
+ * Localname: TerminateResponse
+ * Namespace: http://ws.apache.org/muse/example/businessprocesstype/properties
+ * Java type: org.apache.ws.muse.example.businessprocesstype.properties.TerminateResponseDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.ws.muse.example.businessprocesstype.properties.impl;
+/**
+ * A document containing one TerminateResponse(@http://ws.apache.org/muse/example/businessprocesstype/properties) element.
+ *
+ * This is a complex type.
+ */
+public class TerminateResponseDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ws.muse.example.businessprocesstype.properties.TerminateResponseDocument
+{
+    
+    public TerminateResponseDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName TERMINATERESPONSE$0 = 
+        new javax.xml.namespace.QName("http://ws.apache.org/muse/example/businessprocesstype/properties", "TerminateResponse");
+    
+    
+    /**
+     * Gets the "TerminateResponse" element
+     */
+    public org.apache.ws.muse.example.businessprocesstype.properties.TerminateResponseDocument.TerminateResponse getTerminateResponse()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.businessprocesstype.properties.TerminateResponseDocument.TerminateResponse target = null;
+            target = (org.apache.ws.muse.example.businessprocesstype.properties.TerminateResponseDocument.TerminateResponse)get_store().find_element_user(TERMINATERESPONSE$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "TerminateResponse" element
+     */
+    public void setTerminateResponse(org.apache.ws.muse.example.businessprocesstype.properties.TerminateResponseDocument.TerminateResponse terminateResponse)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.businessprocesstype.properties.TerminateResponseDocument.TerminateResponse target = null;
+            target = (org.apache.ws.muse.example.businessprocesstype.properties.TerminateResponseDocument.TerminateResponse)get_store().find_element_user(TERMINATERESPONSE$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.ws.muse.example.businessprocesstype.properties.TerminateResponseDocument.TerminateResponse)get_store().add_element_user(TERMINATERESPONSE$0);
+            }
+            target.set(terminateResponse);
+        }
+    }
+    
+    /**
+     * Appends and returns a new empty "TerminateResponse" element
+     */
+    public org.apache.ws.muse.example.businessprocesstype.properties.TerminateResponseDocument.TerminateResponse addNewTerminateResponse()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.ws.muse.example.businessprocesstype.properties.TerminateResponseDocument.TerminateResponse target = null;
+            target = (org.apache.ws.muse.example.businessprocesstype.properties.TerminateResponseDocument.TerminateResponse)get_store().add_element_user(TERMINATERESPONSE$0);
+            return target;
+        }
+    }
+    /**
+     * An XML TerminateResponse(@http://ws.apache.org/muse/example/businessprocesstype/properties).
+     *
+     * This is a complex type.
+     */
+    public static class TerminateResponseImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ws.muse.example.businessprocesstype.properties.TerminateResponseDocument.TerminateResponse
+    {
+        
+        public TerminateResponseImpl(org.apache.xmlbeans.SchemaType sType)
+        {
+            super(sType);
+        }
+        
+        
+    }
+}

Added: incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/TotalNumberOfAbortedProcessesDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/TotalNumberOfAbortedProcessesDocumentImpl.java?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/TotalNumberOfAbortedProcessesDocumentImpl.java (added)
+++ incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/TotalNumberOfAbortedProcessesDocumentImpl.java Mon Jun 20 16:28:31 2005
@@ -0,0 +1,76 @@
+/*
+ * An XML document type.
+ * Localname: TotalNumberOfAbortedProcesses
+ * Namespace: http://ws.apache.org/muse/example/businessprocesstype/properties
+ * Java type: org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.ws.muse.example.businessprocesstype.properties.impl;
+/**
+ * A document containing one TotalNumberOfAbortedProcesses(@http://ws.apache.org/muse/example/businessprocesstype/properties) element.
+ *
+ * This is a complex type.
+ */
+public class TotalNumberOfAbortedProcessesDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfAbortedProcessesDocument
+{
+    
+    public TotalNumberOfAbortedProcessesDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName TOTALNUMBEROFABORTEDPROCESSES$0 = 
+        new javax.xml.namespace.QName("http://ws.apache.org/muse/example/businessprocesstype/properties", "TotalNumberOfAbortedProcesses");
+    
+    
+    /**
+     * Gets the "TotalNumberOfAbortedProcesses" element
+     */
+    public org.apache.ws.namespaces.muse.muwsExt1.LongMetric getTotalNumberOfAbortedProcesses()
+    {
+        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(TOTALNUMBEROFABORTEDPROCESSES$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "TotalNumberOfAbortedProcesses" element
+     */
+    public void setTotalNumberOfAbortedProcesses(org.apache.ws.namespaces.muse.muwsExt1.LongMetric totalNumberOfAbortedProcesses)
+    {
+        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(TOTALNUMBEROFABORTEDPROCESSES$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.ws.namespaces.muse.muwsExt1.LongMetric)get_store().add_element_user(TOTALNUMBEROFABORTEDPROCESSES$0);
+            }
+            target.set(totalNumberOfAbortedProcesses);
+        }
+    }
+    
+    /**
+     * Appends and returns a new empty "TotalNumberOfAbortedProcesses" element
+     */
+    public org.apache.ws.namespaces.muse.muwsExt1.LongMetric addNewTotalNumberOfAbortedProcesses()
+    {
+        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(TOTALNUMBEROFABORTEDPROCESSES$0);
+            return target;
+        }
+    }
+}

Added: incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/TotalNumberOfCompletedProcessesDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/TotalNumberOfCompletedProcessesDocumentImpl.java?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/TotalNumberOfCompletedProcessesDocumentImpl.java (added)
+++ incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/TotalNumberOfCompletedProcessesDocumentImpl.java Mon Jun 20 16:28:31 2005
@@ -0,0 +1,76 @@
+/*
+ * An XML document type.
+ * Localname: TotalNumberOfCompletedProcesses
+ * Namespace: http://ws.apache.org/muse/example/businessprocesstype/properties
+ * Java type: org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.ws.muse.example.businessprocesstype.properties.impl;
+/**
+ * A document containing one TotalNumberOfCompletedProcesses(@http://ws.apache.org/muse/example/businessprocesstype/properties) element.
+ *
+ * This is a complex type.
+ */
+public class TotalNumberOfCompletedProcessesDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfCompletedProcessesDocument
+{
+    
+    public TotalNumberOfCompletedProcessesDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName TOTALNUMBEROFCOMPLETEDPROCESSES$0 = 
+        new javax.xml.namespace.QName("http://ws.apache.org/muse/example/businessprocesstype/properties", "TotalNumberOfCompletedProcesses");
+    
+    
+    /**
+     * Gets the "TotalNumberOfCompletedProcesses" element
+     */
+    public org.apache.ws.namespaces.muse.muwsExt1.LongMetric getTotalNumberOfCompletedProcesses()
+    {
+        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(TOTALNUMBEROFCOMPLETEDPROCESSES$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "TotalNumberOfCompletedProcesses" element
+     */
+    public void setTotalNumberOfCompletedProcesses(org.apache.ws.namespaces.muse.muwsExt1.LongMetric totalNumberOfCompletedProcesses)
+    {
+        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(TOTALNUMBEROFCOMPLETEDPROCESSES$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.ws.namespaces.muse.muwsExt1.LongMetric)get_store().add_element_user(TOTALNUMBEROFCOMPLETEDPROCESSES$0);
+            }
+            target.set(totalNumberOfCompletedProcesses);
+        }
+    }
+    
+    /**
+     * Appends and returns a new empty "TotalNumberOfCompletedProcesses" element
+     */
+    public org.apache.ws.namespaces.muse.muwsExt1.LongMetric addNewTotalNumberOfCompletedProcesses()
+    {
+        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(TOTALNUMBEROFCOMPLETEDPROCESSES$0);
+            return target;
+        }
+    }
+}

Added: incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/TotalNumberOfTerminatedProcessesDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/TotalNumberOfTerminatedProcessesDocumentImpl.java?rev=191585&view=auto
==============================================================================
--- incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/TotalNumberOfTerminatedProcessesDocumentImpl.java (added)
+++ incubator/muse/site/example/services/.xmlbeans/src/org/apache/ws/muse/example/businessprocesstype/properties/impl/TotalNumberOfTerminatedProcessesDocumentImpl.java Mon Jun 20 16:28:31 2005
@@ -0,0 +1,76 @@
+/*
+ * An XML document type.
+ * Localname: TotalNumberOfTerminatedProcesses
+ * Namespace: http://ws.apache.org/muse/example/businessprocesstype/properties
+ * Java type: org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.ws.muse.example.businessprocesstype.properties.impl;
+/**
+ * A document containing one TotalNumberOfTerminatedProcesses(@http://ws.apache.org/muse/example/businessprocesstype/properties) element.
+ *
+ * This is a complex type.
+ */
+public class TotalNumberOfTerminatedProcessesDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ws.muse.example.businessprocesstype.properties.TotalNumberOfTerminatedProcessesDocument
+{
+    
+    public TotalNumberOfTerminatedProcessesDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName TOTALNUMBEROFTERMINATEDPROCESSES$0 = 
+        new javax.xml.namespace.QName("http://ws.apache.org/muse/example/businessprocesstype/properties", "TotalNumberOfTerminatedProcesses");
+    
+    
+    /**
+     * Gets the "TotalNumberOfTerminatedProcesses" element
+     */
+    public org.apache.ws.namespaces.muse.muwsExt1.LongMetric getTotalNumberOfTerminatedProcesses()
+    {
+        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(TOTALNUMBEROFTERMINATEDPROCESSES$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "TotalNumberOfTerminatedProcesses" element
+     */
+    public void setTotalNumberOfTerminatedProcesses(org.apache.ws.namespaces.muse.muwsExt1.LongMetric totalNumberOfTerminatedProcesses)
+    {
+        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(TOTALNUMBEROFTERMINATEDPROCESSES$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.ws.namespaces.muse.muwsExt1.LongMetric)get_store().add_element_user(TOTALNUMBEROFTERMINATEDPROCESSES$0);
+            }
+            target.set(totalNumberOfTerminatedProcesses);
+        }
+    }
+    
+    /**
+     * Appends and returns a new empty "TotalNumberOfTerminatedProcesses" element
+     */
+    public org.apache.ws.namespaces.muse.muwsExt1.LongMetric addNewTotalNumberOfTerminatedProcesses()
+    {
+        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(TOTALNUMBEROFTERMINATEDPROCESSES$0);
+            return target;
+        }
+    }
+}



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