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

svn commit: r179404 [6/7] - in /incubator/muse/trunk/src/ieeedemo/src/.xmlbeans/src/org: ./ wsdmdemo/ wsdmdemo/service/ wsdmdemo/service/weatherClientConfig/ wsdmdemo/service/weatherClientConfig/impl/ wsdmdemo/service/weatherStation/ wsdmdemo/service/weatherStation/impl/ wsdmdemo/service/weatherStationDir/ wsdmdemo/service/weatherStationDir/impl/

Added: incubator/muse/trunk/src/ieeedemo/src/.xmlbeans/src/org/wsdmdemo/service/weatherStationDir/RemoveWeatherStationResponseDocument.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/ieeedemo/src/.xmlbeans/src/org/wsdmdemo/service/weatherStationDir/RemoveWeatherStationResponseDocument.java?rev=179404&view=auto
==============================================================================
--- incubator/muse/trunk/src/ieeedemo/src/.xmlbeans/src/org/wsdmdemo/service/weatherStationDir/RemoveWeatherStationResponseDocument.java (added)
+++ incubator/muse/trunk/src/ieeedemo/src/.xmlbeans/src/org/wsdmdemo/service/weatherStationDir/RemoveWeatherStationResponseDocument.java Wed Jun  1 12:35:57 2005
@@ -0,0 +1,135 @@
+/*
+ * An XML document type.
+ * Localname: RemoveWeatherStationResponse
+ * Namespace: http://wsdmdemo.org/service/weather-station-dir
+ * Java type: org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.wsdmdemo.service.weatherStationDir;
+
+
+/**
+ * A document containing one RemoveWeatherStationResponse(@http://wsdmdemo.org/service/weather-station-dir) element.
+ *
+ * This is a complex type.
+ */
+public interface RemoveWeatherStationResponseDocument extends org.apache.xmlbeans.XmlObject
+{
+    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)schema.system.sD64EFB8B3956918F7030B3BF341B5EA7.TypeSystemHolder.typeSystem.resolveHandle("removeweatherstationresponse4880doctype");
+    
+    /**
+     * Gets the "RemoveWeatherStationResponse" element
+     */
+    org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument.RemoveWeatherStationResponse getRemoveWeatherStationResponse();
+    
+    /**
+     * Sets the "RemoveWeatherStationResponse" element
+     */
+    void setRemoveWeatherStationResponse(org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument.RemoveWeatherStationResponse removeWeatherStationResponse);
+    
+    /**
+     * Appends and returns a new empty "RemoveWeatherStationResponse" element
+     */
+    org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument.RemoveWeatherStationResponse addNewRemoveWeatherStationResponse();
+    
+    /**
+     * An XML RemoveWeatherStationResponse(@http://wsdmdemo.org/service/weather-station-dir).
+     *
+     * This is a complex type.
+     */
+    public interface RemoveWeatherStationResponse extends org.apache.xmlbeans.XmlObject
+    {
+        public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)schema.system.sD64EFB8B3956918F7030B3BF341B5EA7.TypeSystemHolder.typeSystem.resolveHandle("removeweatherstationresponse30ffelemtype");
+        
+        /**
+         * A factory class with static methods for creating instances
+         * of this type.
+         */
+        
+        public static final class Factory
+        {
+            public static org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument.RemoveWeatherStationResponse newInstance() {
+              return (org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument.RemoveWeatherStationResponse) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
+            
+            public static org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument.RemoveWeatherStationResponse newInstance(org.apache.xmlbeans.XmlOptions options) {
+              return (org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument.RemoveWeatherStationResponse) 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.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument newInstance() {
+          return (org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
+        
+        public static org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument newInstance(org.apache.xmlbeans.XmlOptions options) {
+          return (org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
+        
+        /** @param xmlAsString the string value to parse */
+        public static org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
+          return (org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
+        
+        public static org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
+        
+        /** @param file the file from which to load an xml document */
+        public static org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
+        
+        public static org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
+        
+        public static org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
+        
+        public static org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
+        
+        public static org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
+        
+        public static org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
+        
+        public static org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
+        
+        public static org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
+        
+        public static org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
+          return (org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
+        
+        public static org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
+        
+        public static org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
+          return (org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
+        
+        public static org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
+        
+        public static org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return (org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
+        
+        public static org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument 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.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument) 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/trunk/src/ieeedemo/src/.xmlbeans/src/org/wsdmdemo/service/weatherStationDir/WeatherStationDirectoryResourcePropertiesDocument.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/ieeedemo/src/.xmlbeans/src/org/wsdmdemo/service/weatherStationDir/WeatherStationDirectoryResourcePropertiesDocument.java?rev=179404&view=auto
==============================================================================
--- incubator/muse/trunk/src/ieeedemo/src/.xmlbeans/src/org/wsdmdemo/service/weatherStationDir/WeatherStationDirectoryResourcePropertiesDocument.java (added)
+++ incubator/muse/trunk/src/ieeedemo/src/.xmlbeans/src/org/wsdmdemo/service/weatherStationDir/WeatherStationDirectoryResourcePropertiesDocument.java Wed Jun  1 12:35:57 2005
@@ -0,0 +1,395 @@
+/*
+ * An XML document type.
+ * Localname: WeatherStationDirectoryResourceProperties
+ * Namespace: http://wsdmdemo.org/service/weather-station-dir
+ * Java type: org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.wsdmdemo.service.weatherStationDir;
+
+
+/**
+ * A document containing one WeatherStationDirectoryResourceProperties(@http://wsdmdemo.org/service/weather-station-dir) element.
+ *
+ * This is a complex type.
+ */
+public interface WeatherStationDirectoryResourcePropertiesDocument extends org.apache.xmlbeans.XmlObject
+{
+    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)schema.system.sD64EFB8B3956918F7030B3BF341B5EA7.TypeSystemHolder.typeSystem.resolveHandle("weatherstationdirectoryresourceproperties96b7doctype");
+    
+    /**
+     * Gets the "WeatherStationDirectoryResourceProperties" element
+     */
+    org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument.WeatherStationDirectoryResourceProperties getWeatherStationDirectoryResourceProperties();
+    
+    /**
+     * Sets the "WeatherStationDirectoryResourceProperties" element
+     */
+    void setWeatherStationDirectoryResourceProperties(org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument.WeatherStationDirectoryResourceProperties weatherStationDirectoryResourceProperties);
+    
+    /**
+     * Appends and returns a new empty "WeatherStationDirectoryResourceProperties" element
+     */
+    org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument.WeatherStationDirectoryResourceProperties addNewWeatherStationDirectoryResourceProperties();
+    
+    /**
+     * An XML WeatherStationDirectoryResourceProperties(@http://wsdmdemo.org/service/weather-station-dir).
+     *
+     * This is a complex type.
+     */
+    public interface WeatherStationDirectoryResourceProperties extends org.apache.xmlbeans.XmlObject
+    {
+        public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)schema.system.sD64EFB8B3956918F7030B3BF341B5EA7.TypeSystemHolder.typeSystem.resolveHandle("weatherstationdirectoryresourceproperties5871elemtype");
+        
+        /**
+         * 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 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);
+        
+        /**
+         * A factory class with static methods for creating instances
+         * of this type.
+         */
+        
+        public static final class Factory
+        {
+            public static org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument.WeatherStationDirectoryResourceProperties newInstance() {
+              return (org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument.WeatherStationDirectoryResourceProperties) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
+            
+            public static org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument.WeatherStationDirectoryResourceProperties newInstance(org.apache.xmlbeans.XmlOptions options) {
+              return (org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument.WeatherStationDirectoryResourceProperties) 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.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument newInstance() {
+          return (org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
+        
+        public static org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument newInstance(org.apache.xmlbeans.XmlOptions options) {
+          return (org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
+        
+        /** @param xmlAsString the string value to parse */
+        public static org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
+          return (org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
+        
+        public static org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
+        
+        /** @param file the file from which to load an xml document */
+        public static org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
+        
+        public static org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
+        
+        public static org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
+        
+        public static org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
+        
+        public static org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
+        
+        public static org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
+        
+        public static org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
+        
+        public static org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
+        
+        public static org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
+          return (org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
+        
+        public static org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
+        
+        public static org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
+          return (org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
+        
+        public static org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
+        
+        public static org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return (org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
+        
+        public static org.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument 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.wsdmdemo.service.weatherStationDir.WeatherStationDirectoryResourcePropertiesDocument) 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/trunk/src/ieeedemo/src/.xmlbeans/src/org/wsdmdemo/service/weatherStationDir/impl/AddWeatherStationDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/ieeedemo/src/.xmlbeans/src/org/wsdmdemo/service/weatherStationDir/impl/AddWeatherStationDocumentImpl.java?rev=179404&view=auto
==============================================================================
--- incubator/muse/trunk/src/ieeedemo/src/.xmlbeans/src/org/wsdmdemo/service/weatherStationDir/impl/AddWeatherStationDocumentImpl.java (added)
+++ incubator/muse/trunk/src/ieeedemo/src/.xmlbeans/src/org/wsdmdemo/service/weatherStationDir/impl/AddWeatherStationDocumentImpl.java Wed Jun  1 12:35:57 2005
@@ -0,0 +1,143 @@
+/*
+ * An XML document type.
+ * Localname: AddWeatherStation
+ * Namespace: http://wsdmdemo.org/service/weather-station-dir
+ * Java type: org.wsdmdemo.service.weatherStationDir.AddWeatherStationDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.wsdmdemo.service.weatherStationDir.impl;
+/**
+ * A document containing one AddWeatherStation(@http://wsdmdemo.org/service/weather-station-dir) element.
+ *
+ * This is a complex type.
+ */
+public class AddWeatherStationDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.wsdmdemo.service.weatherStationDir.AddWeatherStationDocument
+{
+    
+    public AddWeatherStationDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName ADDWEATHERSTATION$0 = 
+        new javax.xml.namespace.QName("http://wsdmdemo.org/service/weather-station-dir", "AddWeatherStation");
+    
+    
+    /**
+     * Gets the "AddWeatherStation" element
+     */
+    public org.wsdmdemo.service.weatherStationDir.AddWeatherStationDocument.AddWeatherStation getAddWeatherStation()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.wsdmdemo.service.weatherStationDir.AddWeatherStationDocument.AddWeatherStation target = null;
+            target = (org.wsdmdemo.service.weatherStationDir.AddWeatherStationDocument.AddWeatherStation)get_store().find_element_user(ADDWEATHERSTATION$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "AddWeatherStation" element
+     */
+    public void setAddWeatherStation(org.wsdmdemo.service.weatherStationDir.AddWeatherStationDocument.AddWeatherStation addWeatherStation)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.wsdmdemo.service.weatherStationDir.AddWeatherStationDocument.AddWeatherStation target = null;
+            target = (org.wsdmdemo.service.weatherStationDir.AddWeatherStationDocument.AddWeatherStation)get_store().find_element_user(ADDWEATHERSTATION$0, 0);
+            if (target == null)
+            {
+                target = (org.wsdmdemo.service.weatherStationDir.AddWeatherStationDocument.AddWeatherStation)get_store().add_element_user(ADDWEATHERSTATION$0);
+            }
+            target.set(addWeatherStation);
+        }
+    }
+    
+    /**
+     * Appends and returns a new empty "AddWeatherStation" element
+     */
+    public org.wsdmdemo.service.weatherStationDir.AddWeatherStationDocument.AddWeatherStation addNewAddWeatherStation()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.wsdmdemo.service.weatherStationDir.AddWeatherStationDocument.AddWeatherStation target = null;
+            target = (org.wsdmdemo.service.weatherStationDir.AddWeatherStationDocument.AddWeatherStation)get_store().add_element_user(ADDWEATHERSTATION$0);
+            return target;
+        }
+    }
+    /**
+     * An XML AddWeatherStation(@http://wsdmdemo.org/service/weather-station-dir).
+     *
+     * This is a complex type.
+     */
+    public static class AddWeatherStationImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.wsdmdemo.service.weatherStationDir.AddWeatherStationDocument.AddWeatherStation
+    {
+        
+        public AddWeatherStationImpl(org.apache.xmlbeans.SchemaType sType)
+        {
+            super(sType);
+        }
+        
+        private static final javax.xml.namespace.QName ENDPOINTREFERENCE$0 = 
+            new javax.xml.namespace.QName("http://schemas.xmlsoap.org/ws/2004/08/addressing", "EndpointReference");
+        
+        
+        /**
+         * Gets the "EndpointReference" element
+         */
+        public org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType getEndpointReference()
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType target = null;
+                target = (org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType)get_store().find_element_user(ENDPOINTREFERENCE$0, 0);
+                if (target == null)
+                {
+                    return null;
+                }
+                return target;
+            }
+        }
+        
+        /**
+         * Sets the "EndpointReference" element
+         */
+        public void setEndpointReference(org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType endpointReference)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType target = null;
+                target = (org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType)get_store().find_element_user(ENDPOINTREFERENCE$0, 0);
+                if (target == null)
+                {
+                    target = (org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType)get_store().add_element_user(ENDPOINTREFERENCE$0);
+                }
+                target.set(endpointReference);
+            }
+        }
+        
+        /**
+         * Appends and returns a new empty "EndpointReference" element
+         */
+        public org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType addNewEndpointReference()
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType target = null;
+                target = (org.xmlsoap.schemas.ws.x2004.x08.addressing.EndpointReferenceType)get_store().add_element_user(ENDPOINTREFERENCE$0);
+                return target;
+            }
+        }
+    }
+}

Added: incubator/muse/trunk/src/ieeedemo/src/.xmlbeans/src/org/wsdmdemo/service/weatherStationDir/impl/AddWeatherStationResponseDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/ieeedemo/src/.xmlbeans/src/org/wsdmdemo/service/weatherStationDir/impl/AddWeatherStationResponseDocumentImpl.java?rev=179404&view=auto
==============================================================================
--- incubator/muse/trunk/src/ieeedemo/src/.xmlbeans/src/org/wsdmdemo/service/weatherStationDir/impl/AddWeatherStationResponseDocumentImpl.java (added)
+++ incubator/muse/trunk/src/ieeedemo/src/.xmlbeans/src/org/wsdmdemo/service/weatherStationDir/impl/AddWeatherStationResponseDocumentImpl.java Wed Jun  1 12:35:57 2005
@@ -0,0 +1,91 @@
+/*
+ * An XML document type.
+ * Localname: AddWeatherStationResponse
+ * Namespace: http://wsdmdemo.org/service/weather-station-dir
+ * Java type: org.wsdmdemo.service.weatherStationDir.AddWeatherStationResponseDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.wsdmdemo.service.weatherStationDir.impl;
+/**
+ * A document containing one AddWeatherStationResponse(@http://wsdmdemo.org/service/weather-station-dir) element.
+ *
+ * This is a complex type.
+ */
+public class AddWeatherStationResponseDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.wsdmdemo.service.weatherStationDir.AddWeatherStationResponseDocument
+{
+    
+    public AddWeatherStationResponseDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName ADDWEATHERSTATIONRESPONSE$0 = 
+        new javax.xml.namespace.QName("http://wsdmdemo.org/service/weather-station-dir", "AddWeatherStationResponse");
+    
+    
+    /**
+     * Gets the "AddWeatherStationResponse" element
+     */
+    public org.wsdmdemo.service.weatherStationDir.AddWeatherStationResponseDocument.AddWeatherStationResponse getAddWeatherStationResponse()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.wsdmdemo.service.weatherStationDir.AddWeatherStationResponseDocument.AddWeatherStationResponse target = null;
+            target = (org.wsdmdemo.service.weatherStationDir.AddWeatherStationResponseDocument.AddWeatherStationResponse)get_store().find_element_user(ADDWEATHERSTATIONRESPONSE$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "AddWeatherStationResponse" element
+     */
+    public void setAddWeatherStationResponse(org.wsdmdemo.service.weatherStationDir.AddWeatherStationResponseDocument.AddWeatherStationResponse addWeatherStationResponse)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.wsdmdemo.service.weatherStationDir.AddWeatherStationResponseDocument.AddWeatherStationResponse target = null;
+            target = (org.wsdmdemo.service.weatherStationDir.AddWeatherStationResponseDocument.AddWeatherStationResponse)get_store().find_element_user(ADDWEATHERSTATIONRESPONSE$0, 0);
+            if (target == null)
+            {
+                target = (org.wsdmdemo.service.weatherStationDir.AddWeatherStationResponseDocument.AddWeatherStationResponse)get_store().add_element_user(ADDWEATHERSTATIONRESPONSE$0);
+            }
+            target.set(addWeatherStationResponse);
+        }
+    }
+    
+    /**
+     * Appends and returns a new empty "AddWeatherStationResponse" element
+     */
+    public org.wsdmdemo.service.weatherStationDir.AddWeatherStationResponseDocument.AddWeatherStationResponse addNewAddWeatherStationResponse()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.wsdmdemo.service.weatherStationDir.AddWeatherStationResponseDocument.AddWeatherStationResponse target = null;
+            target = (org.wsdmdemo.service.weatherStationDir.AddWeatherStationResponseDocument.AddWeatherStationResponse)get_store().add_element_user(ADDWEATHERSTATIONRESPONSE$0);
+            return target;
+        }
+    }
+    /**
+     * An XML AddWeatherStationResponse(@http://wsdmdemo.org/service/weather-station-dir).
+     *
+     * This is a complex type.
+     */
+    public static class AddWeatherStationResponseImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.wsdmdemo.service.weatherStationDir.AddWeatherStationResponseDocument.AddWeatherStationResponse
+    {
+        
+        public AddWeatherStationResponseImpl(org.apache.xmlbeans.SchemaType sType)
+        {
+            super(sType);
+        }
+        
+        
+    }
+}

Added: incubator/muse/trunk/src/ieeedemo/src/.xmlbeans/src/org/wsdmdemo/service/weatherStationDir/impl/RemoveWeatherStationDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/ieeedemo/src/.xmlbeans/src/org/wsdmdemo/service/weatherStationDir/impl/RemoveWeatherStationDocumentImpl.java?rev=179404&view=auto
==============================================================================
--- incubator/muse/trunk/src/ieeedemo/src/.xmlbeans/src/org/wsdmdemo/service/weatherStationDir/impl/RemoveWeatherStationDocumentImpl.java (added)
+++ incubator/muse/trunk/src/ieeedemo/src/.xmlbeans/src/org/wsdmdemo/service/weatherStationDir/impl/RemoveWeatherStationDocumentImpl.java Wed Jun  1 12:35:57 2005
@@ -0,0 +1,161 @@
+/*
+ * An XML document type.
+ * Localname: RemoveWeatherStation
+ * Namespace: http://wsdmdemo.org/service/weather-station-dir
+ * Java type: org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.wsdmdemo.service.weatherStationDir.impl;
+/**
+ * A document containing one RemoveWeatherStation(@http://wsdmdemo.org/service/weather-station-dir) element.
+ *
+ * This is a complex type.
+ */
+public class RemoveWeatherStationDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationDocument
+{
+    
+    public RemoveWeatherStationDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName REMOVEWEATHERSTATION$0 = 
+        new javax.xml.namespace.QName("http://wsdmdemo.org/service/weather-station-dir", "RemoveWeatherStation");
+    
+    
+    /**
+     * Gets the "RemoveWeatherStation" element
+     */
+    public org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationDocument.RemoveWeatherStation getRemoveWeatherStation()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationDocument.RemoveWeatherStation target = null;
+            target = (org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationDocument.RemoveWeatherStation)get_store().find_element_user(REMOVEWEATHERSTATION$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "RemoveWeatherStation" element
+     */
+    public void setRemoveWeatherStation(org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationDocument.RemoveWeatherStation removeWeatherStation)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationDocument.RemoveWeatherStation target = null;
+            target = (org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationDocument.RemoveWeatherStation)get_store().find_element_user(REMOVEWEATHERSTATION$0, 0);
+            if (target == null)
+            {
+                target = (org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationDocument.RemoveWeatherStation)get_store().add_element_user(REMOVEWEATHERSTATION$0);
+            }
+            target.set(removeWeatherStation);
+        }
+    }
+    
+    /**
+     * Appends and returns a new empty "RemoveWeatherStation" element
+     */
+    public org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationDocument.RemoveWeatherStation addNewRemoveWeatherStation()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationDocument.RemoveWeatherStation target = null;
+            target = (org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationDocument.RemoveWeatherStation)get_store().add_element_user(REMOVEWEATHERSTATION$0);
+            return target;
+        }
+    }
+    /**
+     * An XML RemoveWeatherStation(@http://wsdmdemo.org/service/weather-station-dir).
+     *
+     * This is a complex type.
+     */
+    public static class RemoveWeatherStationImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationDocument.RemoveWeatherStation
+    {
+        
+        public RemoveWeatherStationImpl(org.apache.xmlbeans.SchemaType sType)
+        {
+            super(sType);
+        }
+        
+        private static final javax.xml.namespace.QName RESOURCEID$0 = 
+            new javax.xml.namespace.QName("http://docs.oasis-open.org/wsdm/2004/12/muws/wsdm-muws-part1.xsd", "ResourceId");
+        
+        
+        /**
+         * Gets the "ResourceId" element
+         */
+        public java.lang.String getResourceId()
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.xmlbeans.SimpleValue target = null;
+                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(RESOURCEID$0, 0);
+                if (target == null)
+                {
+                    return null;
+                }
+                return target.getStringValue();
+            }
+        }
+        
+        /**
+         * Gets (as xml) the "ResourceId" element
+         */
+        public org.apache.xmlbeans.XmlAnyURI xgetResourceId()
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.xmlbeans.XmlAnyURI target = null;
+                target = (org.apache.xmlbeans.XmlAnyURI)get_store().find_element_user(RESOURCEID$0, 0);
+                return target;
+            }
+        }
+        
+        /**
+         * Sets the "ResourceId" element
+         */
+        public void setResourceId(java.lang.String resourceId)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.xmlbeans.SimpleValue target = null;
+                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(RESOURCEID$0, 0);
+                if (target == null)
+                {
+                    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(RESOURCEID$0);
+                }
+                target.setStringValue(resourceId);
+            }
+        }
+        
+        /**
+         * Sets (as xml) the "ResourceId" element
+         */
+        public void xsetResourceId(org.apache.xmlbeans.XmlAnyURI resourceId)
+        {
+            synchronized (monitor())
+            {
+                check_orphaned();
+                org.apache.xmlbeans.XmlAnyURI target = null;
+                target = (org.apache.xmlbeans.XmlAnyURI)get_store().find_element_user(RESOURCEID$0, 0);
+                if (target == null)
+                {
+                    target = (org.apache.xmlbeans.XmlAnyURI)get_store().add_element_user(RESOURCEID$0);
+                }
+                target.set(resourceId);
+            }
+        }
+    }
+}

Added: incubator/muse/trunk/src/ieeedemo/src/.xmlbeans/src/org/wsdmdemo/service/weatherStationDir/impl/RemoveWeatherStationResponseDocumentImpl.java
URL: http://svn.apache.org/viewcvs/incubator/muse/trunk/src/ieeedemo/src/.xmlbeans/src/org/wsdmdemo/service/weatherStationDir/impl/RemoveWeatherStationResponseDocumentImpl.java?rev=179404&view=auto
==============================================================================
--- incubator/muse/trunk/src/ieeedemo/src/.xmlbeans/src/org/wsdmdemo/service/weatherStationDir/impl/RemoveWeatherStationResponseDocumentImpl.java (added)
+++ incubator/muse/trunk/src/ieeedemo/src/.xmlbeans/src/org/wsdmdemo/service/weatherStationDir/impl/RemoveWeatherStationResponseDocumentImpl.java Wed Jun  1 12:35:57 2005
@@ -0,0 +1,91 @@
+/*
+ * An XML document type.
+ * Localname: RemoveWeatherStationResponse
+ * Namespace: http://wsdmdemo.org/service/weather-station-dir
+ * Java type: org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.wsdmdemo.service.weatherStationDir.impl;
+/**
+ * A document containing one RemoveWeatherStationResponse(@http://wsdmdemo.org/service/weather-station-dir) element.
+ *
+ * This is a complex type.
+ */
+public class RemoveWeatherStationResponseDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument
+{
+    
+    public RemoveWeatherStationResponseDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName REMOVEWEATHERSTATIONRESPONSE$0 = 
+        new javax.xml.namespace.QName("http://wsdmdemo.org/service/weather-station-dir", "RemoveWeatherStationResponse");
+    
+    
+    /**
+     * Gets the "RemoveWeatherStationResponse" element
+     */
+    public org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument.RemoveWeatherStationResponse getRemoveWeatherStationResponse()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument.RemoveWeatherStationResponse target = null;
+            target = (org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument.RemoveWeatherStationResponse)get_store().find_element_user(REMOVEWEATHERSTATIONRESPONSE$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "RemoveWeatherStationResponse" element
+     */
+    public void setRemoveWeatherStationResponse(org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument.RemoveWeatherStationResponse removeWeatherStationResponse)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument.RemoveWeatherStationResponse target = null;
+            target = (org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument.RemoveWeatherStationResponse)get_store().find_element_user(REMOVEWEATHERSTATIONRESPONSE$0, 0);
+            if (target == null)
+            {
+                target = (org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument.RemoveWeatherStationResponse)get_store().add_element_user(REMOVEWEATHERSTATIONRESPONSE$0);
+            }
+            target.set(removeWeatherStationResponse);
+        }
+    }
+    
+    /**
+     * Appends and returns a new empty "RemoveWeatherStationResponse" element
+     */
+    public org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument.RemoveWeatherStationResponse addNewRemoveWeatherStationResponse()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument.RemoveWeatherStationResponse target = null;
+            target = (org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument.RemoveWeatherStationResponse)get_store().add_element_user(REMOVEWEATHERSTATIONRESPONSE$0);
+            return target;
+        }
+    }
+    /**
+     * An XML RemoveWeatherStationResponse(@http://wsdmdemo.org/service/weather-station-dir).
+     *
+     * This is a complex type.
+     */
+    public static class RemoveWeatherStationResponseImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.wsdmdemo.service.weatherStationDir.RemoveWeatherStationResponseDocument.RemoveWeatherStationResponse
+    {
+        
+        public RemoveWeatherStationResponseImpl(org.apache.xmlbeans.SchemaType sType)
+        {
+            super(sType);
+        }
+        
+        
+    }
+}



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