Author: jkaputin
Date: Sat Oct  1 18:43:22 2005
New Revision: 293055

URL: http://svn.apache.org/viewcvs?rev=293055&view=rev
Log:
Created some impl classes for the feature, property and 

some interface elements.

Added:
    incubator/woden/java/src/org/apache/woden/internal/wsdl20/FeatureImpl.java
    
incubator/woden/java/src/org/apache/woden/internal/wsdl20/InterfaceFaultImpl.java
    
incubator/woden/java/src/org/apache/woden/internal/wsdl20/InterfaceOperationImpl.java
    incubator/woden/java/src/org/apache/woden/internal/wsdl20/PropertyImpl.java
Modified:
    
incubator/woden/java/src/org/apache/woden/internal/wsdl20/DescriptionElementImpl.java
    incubator/woden/java/src/org/apache/woden/internal/wsdl20/InterfaceImpl.java

Modified: 
incubator/woden/java/src/org/apache/woden/internal/wsdl20/DescriptionElementImpl.java
URL: 
http://svn.apache.org/viewcvs/incubator/woden/java/src/org/apache/woden/internal/wsdl20/DescriptionElementImpl.java?rev=293055&r1=293054&r2=293055&view=diff
==============================================================================
--- 
incubator/woden/java/src/org/apache/woden/internal/wsdl20/DescriptionElementImpl.java
 (original)
+++ 
incubator/woden/java/src/org/apache/woden/internal/wsdl20/DescriptionElementImpl.java
 Sat Oct  1 18:43:22 2005
@@ -22,9 +22,13 @@
 import org.apache.woden.wsdl20.xml.BindingElement;

 import org.apache.woden.wsdl20.xml.DescriptionElement;

 import org.apache.woden.wsdl20.xml.DocumentationElement;

+import org.apache.woden.wsdl20.xml.InterfaceFaultElement;

+import org.apache.woden.wsdl20.xml.FeatureElement;

 import org.apache.woden.wsdl20.xml.ImportElement;

 import org.apache.woden.wsdl20.xml.IncludeElement;

 import org.apache.woden.wsdl20.xml.InterfaceElement;

+import org.apache.woden.wsdl20.xml.InterfaceOperationElement;

+import org.apache.woden.wsdl20.xml.PropertyElement;

 import org.apache.woden.wsdl20.xml.ServiceElement;

 import org.apache.woden.wsdl20.xml.TypesElement;

 

@@ -50,10 +54,16 @@
     private Map fNamespaces;

     private TypesElement fTypesElement;

     

-    //Cache the WSDL component model here, but flush it if any

-    //updates to the XML model happen (e.g. use an Observer)

-    //TODO flush the component model cache if XML updated 

+    /* 

+     * Cache the WSDL component model here, but flush it if any

+     * updates to the XML model happen (e.g. use an Observer)

+     * TODO flush the component model cache.

+     */

     private Description fDescriptionComponent;

+

+    /*

+     * Attribute accessor and modifier methods

+     */

     

     public void setDocumentBaseURI(String documentBaseURI) 

     {

@@ -106,11 +116,10 @@
     {

         return fNamespaces;

     }

-    

-    public DocumentationElement createDocumentationElement()

-    {

-        return new DocumentationImpl();

-    }

+

+    /*

+     * Element accessor and modifier methods.

+     */

     

     public void setDocumentationElement(DocumentationElement docEl) 

     {

@@ -144,11 +153,6 @@
         return null;

     }

 

-    public TypesElement createTypesElement()

-    {

-        return new TypesImpl();

-    }

-    

     public void setTypesElement(TypesElement typesEl)

     {

         fTypesElement = typesEl;

@@ -196,6 +200,46 @@
         //TODO

         return null;    

     }

+

+    /*

+     * Element creator methods.

+     */    

+    

+    public DocumentationElement createDocumentationElement()

+    {

+        return new DocumentationImpl();

+    }

+    

+    public TypesElement createTypesElement()

+    {

+        return new TypesImpl();

+    }

+    

+    public InterfaceElement createInterfaceElement()

+    {

+        return new InterfaceImpl();

+    }

+    

+    public InterfaceFaultElement createInterfaceFaultElement()

+    {

+        return new InterfaceFaultImpl();

+    }

+    

+    public InterfaceOperationElement createInterfaceOperationElement()

+    {

+        return new InterfaceOperationImpl();

+    }

+    

+    public FeatureElement createFeatureElement()

+    {

+        return new FeatureImpl();

+    }

+    

+    public PropertyElement createPropertyElement()

+    {

+        return new PropertyImpl();

+    }

+    

     

     /* 

      * Converts the WSDL xml represented within this DescriptionElement


Added: 
incubator/woden/java/src/org/apache/woden/internal/wsdl20/FeatureImpl.java
URL: 
http://svn.apache.org/viewcvs/incubator/woden/java/src/org/apache/woden/internal/wsdl20/FeatureImpl.java?rev=293055&view=auto
==============================================================================
--- incubator/woden/java/src/org/apache/woden/internal/wsdl20/FeatureImpl.java 
(added)
+++ incubator/woden/java/src/org/apache/woden/internal/wsdl20/FeatureImpl.java 
Sat Oct  1 18:43:22 2005
@@ -0,0 +1,71 @@
+/**

+ * Copyright 2005 Apached Software Foundation 

+ *

+ * Licensed under the Apache License, Version 2.0 (the "License"); 

+ * you may not use this file except in compliance with the License. 

+ * You may obtain a copy of the License at 

+ * 

+ *     http://www.apache.org/licenses/LICENSE-2.0 

+ * 

+ * Unless required by applicable law or agreed to in writing, software 

+ * distributed under the License is distributed on an "AS IS" BASIS, 

+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 

+ * See the License for the specific language governing permissions and 

+ * limitations under the License.

+ */

+package org.apache.woden.internal.wsdl20;

+

+import org.apache.woden.wsdl20.Component;

+import org.apache.woden.wsdl20.Feature;

+import org.apache.woden.wsdl20.xml.DocumentationElement;

+import org.apache.woden.wsdl20.xml.FeatureElement;

+

+/**

+ * This class implements support for the <wsdl:feature> element 

+ * and the Feature component in the WSDL Component model.

+ * 

+ * @author [EMAIL PROTECTED]

+ */

+public class FeatureImpl implements Feature, FeatureElement {

+

+    /* (non-Javadoc)

+     * @see org.apache.woden.wsdl20.Feature#getRef()

+     */

+    public String getRef() {

+        // TODO Auto-generated method stub

+        return null;

+    }

+

+    /* (non-Javadoc)

+     * @see org.apache.woden.wsdl20.Feature#isRequired()

+     */

+    public boolean isRequired() {

+        // TODO Auto-generated method stub

+        return false;

+    }

+

+    /* (non-Javadoc)

+     * @see org.apache.woden.wsdl20.NestedComponent#getParent()

+     */

+    public Component getParent() {

+        // TODO Auto-generated method stub

+        return null;

+    }

+

+    /* (non-Javadoc)

+     * @see 
org.apache.woden.wsdl20.xml.DocumentableElement#setDocumentationElement(org.apache.woden.wsdl20.xml.DocumentationElement)

+     */

+    public void setDocumentationElement(DocumentationElement docEl) {

+        // TODO Auto-generated method stub

+

+    }

+

+    /* (non-Javadoc)

+     * @see 
org.apache.woden.wsdl20.xml.DocumentableElement#getDocumentationElement()

+     */

+    public DocumentationElement getDocumentationElement() {

+        // TODO Auto-generated method stub

+        return null;

+    }

+

+}


Added: 
incubator/woden/java/src/org/apache/woden/internal/wsdl20/InterfaceFaultImpl.java
URL: 
http://svn.apache.org/viewcvs/incubator/woden/java/src/org/apache/woden/internal/wsdl20/InterfaceFaultImpl.java?rev=293055&view=auto
==============================================================================
--- 
incubator/woden/java/src/org/apache/woden/internal/wsdl20/InterfaceFaultImpl.java
 (added)
+++ 
incubator/woden/java/src/org/apache/woden/internal/wsdl20/InterfaceFaultImpl.java
 Sat Oct  1 18:43:22 2005
@@ -0,0 +1,127 @@
+/**

+ * Copyright 2005 Apached Software Foundation 

+ *

+ * Licensed under the Apache License, Version 2.0 (the "License"); 

+ * you may not use this file except in compliance with the License. 

+ * You may obtain a copy of the License at 

+ * 

+ *     http://www.apache.org/licenses/LICENSE-2.0 

+ * 

+ * Unless required by applicable law or agreed to in writing, software 

+ * distributed under the License is distributed on an "AS IS" BASIS, 

+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 

+ * See the License for the specific language governing permissions and 

+ * limitations under the License.

+ */

+package org.apache.woden.internal.wsdl20;

+

+import javax.xml.namespace.QName;

+

+import org.apache.woden.wsdl20.Component;

+import org.apache.woden.wsdl20.ElementDeclaration;

+import org.apache.woden.wsdl20.Feature;

+import org.apache.woden.wsdl20.InterfaceFault;

+import org.apache.woden.wsdl20.Property;

+import org.apache.woden.wsdl20.xml.DocumentationElement;

+import org.apache.woden.wsdl20.xml.FeatureElement;

+import org.apache.woden.wsdl20.xml.InterfaceFaultElement;

+import org.apache.woden.wsdl20.xml.PropertyElement;

+

+/**

+ * This class represents the InterfaceFault component from the WSDL 2.0 
Component 

+ * Model and the &lt.fault&gt. child element of the <interface> element. 

+ * 

+ * @author [EMAIL PROTECTED]

+ */

+public class InterfaceFaultImpl implements InterfaceFault,

+        InterfaceFaultElement {

+

+    /* (non-Javadoc)

+     * @see org.apache.woden.wsdl20.InterfaceFault#getName()

+     */

+    public QName getName() {

+        // TODO Auto-generated method stub

+        return null;

+    }

+

+    /* (non-Javadoc)

+     * @see org.apache.woden.wsdl20.InterfaceFault#getElementDeclaration()

+     */

+    public ElementDeclaration getElementDeclaration() {

+        // TODO Auto-generated method stub

+        return null;

+    }

+

+    /* (non-Javadoc)

+     * @see org.apache.woden.wsdl20.NestedComponent#getParent()

+     */

+    public Component getParent() {

+        // TODO Auto-generated method stub

+        return null;

+    }

+

+    /* (non-Javadoc)

+     * @see org.apache.woden.wsdl20.ConfigurableComponent#getFeatures()

+     */

+    public Feature[] getFeatures() {

+        // TODO Auto-generated method stub

+        return null;

+    }

+

+    /* (non-Javadoc)

+     * @see org.apache.woden.wsdl20.ConfigurableComponent#getProperties()

+     */

+    public Property[] getProperties() {

+        // TODO Auto-generated method stub

+        return null;

+    }

+

+    /* (non-Javadoc)

+     * @see 
org.apache.woden.wsdl20.xml.DocumentableElement#setDocumentationElement(org.apache.woden.wsdl20.xml.DocumentationElement)

+     */

+    public void setDocumentationElement(DocumentationElement docEl) {

+        // TODO Auto-generated method stub

+

+    }

+

+    /* (non-Javadoc)

+     * @see 
org.apache.woden.wsdl20.xml.DocumentableElement#getDocumentationElement()

+     */

+    public DocumentationElement getDocumentationElement() {

+        // TODO Auto-generated method stub

+        return null;

+    }

+

+    /* (non-Javadoc)

+     * @see 
org.apache.woden.wsdl20.xml.ConfigurableElement#addFeatureElement(org.apache.woden.wsdl20.xml.FeatureElement)

+     */

+    public void addFeatureElement(FeatureElement feature) {

+        // TODO Auto-generated method stub

+

+    }

+

+    /* (non-Javadoc)

+     * @see 
org.apache.woden.wsdl20.xml.ConfigurableElement#getFeatureElements()

+     */

+    public FeatureElement[] getFeatureElements() {

+        // TODO Auto-generated method stub

+        return null;

+    }

+

+    /* (non-Javadoc)

+     * @see 
org.apache.woden.wsdl20.xml.ConfigurableElement#addPropertyElement(org.apache.woden.wsdl20.xml.PropertyElement)

+     */

+    public void addPropertyElement(PropertyElement property) {

+        // TODO Auto-generated method stub

+

+    }

+

+    /* (non-Javadoc)

+     * @see 
org.apache.woden.wsdl20.xml.ConfigurableElement#getPropertyElements()

+     */

+    public PropertyElement[] getPropertyElements() {

+        // TODO Auto-generated method stub

+        return null;

+    }

+

+}


Modified: 
incubator/woden/java/src/org/apache/woden/internal/wsdl20/InterfaceImpl.java
URL: 
http://svn.apache.org/viewcvs/incubator/woden/java/src/org/apache/woden/internal/wsdl20/InterfaceImpl.java?rev=293055&r1=293054&r2=293055&view=diff
==============================================================================
--- 
incubator/woden/java/src/org/apache/woden/internal/wsdl20/InterfaceImpl.java 
(original)
+++ 
incubator/woden/java/src/org/apache/woden/internal/wsdl20/InterfaceImpl.java 
Sat Oct  1 18:43:22 2005
@@ -26,17 +26,15 @@
 import org.apache.woden.wsdl20.InterfaceOperation;

 import org.apache.woden.wsdl20.Property;

 import org.apache.woden.wsdl20.xml.DocumentationElement;

-import org.apache.woden.wsdl20.xml.FaultElement;

+import org.apache.woden.wsdl20.xml.InterfaceFaultElement;

 import org.apache.woden.wsdl20.xml.FeatureElement;

 import org.apache.woden.wsdl20.xml.InterfaceElement;

-import org.apache.woden.wsdl20.xml.OperationElement;

+import org.apache.woden.wsdl20.xml.InterfaceOperationElement;

 import org.apache.woden.wsdl20.xml.PropertyElement;

 

 /**

- * This class represents both the Interface component as described in the

- * WSDL 2.0 Component Model specification and the XML element information item 

- * for a WSDL 2.0 <interface> element. It implements the behaviour 
required to 

- * support parsing, creating and manipulating a <interface> element.

+ * This class represents the Interface component from the 

+ * WSDL 2.0 Component Model and <interface> element.

  * 

  * @author [EMAIL PROTECTED]

  */

@@ -50,8 +48,8 @@
     private List fStyleDefaults = new Vector();

     

     private DocumentationElement fDocumentation = null;

-    private List fFaultElements = new Vector();

-    private List fOperationElements = new Vector();

+    private List fInterfaceFaultElements = new Vector();

+    private List fInterfaceOperationElements = new Vector();

     private List fFeatureElements = new Vector();

     private List fPropertyElements = new Vector();

     

@@ -148,17 +146,17 @@
     /* 

      * @see 
org.apache.woden.wsdl20.xml.InterfaceElement#addFaultElement(FaultElement)

      */

-    public void addFaultElement(FaultElement fault)

+    public void addFaultElement(InterfaceFaultElement fault)

     {

-        fFaultElements.add(fault);

+        fInterfaceFaultElements.add(fault);

     }

 

     /* 

      * @see org.apache.woden.wsdl20.xml.InterfaceElement#getFaultElements()

      */

-    public FaultElement[] getFaultElements()

+    public InterfaceFaultElement[] getFaultElements()

     {

-        return (FaultElement[])fFaultElements.toArray();

+        return (InterfaceFaultElement[])fInterfaceFaultElements.toArray();

     }

 

     /* 

@@ -172,17 +170,17 @@
     /* 

      * @see 
org.apache.woden.wsdl20.xml.InterfaceElement#addOperationElement(OperationElement)

      */

-    public void addOperationElement(OperationElement operation)

+    public void addOperationElement(InterfaceOperationElement operation)

     {

-        fOperationElements.add(operation);

+        fInterfaceOperationElements.add(operation);

     }

 

     /* 

      * @see org.apache.woden.wsdl20.xml.InterfaceElement#getOperationElements()

      */

-    public OperationElement[] getOperationElements()

+    public InterfaceOperationElement[] getOperationElements()

     {

-        return (OperationElement[])fOperationElements.toArray();

+        return 
(InterfaceOperationElement[])fInterfaceOperationElements.toArray();

     }

 

     /* 


Added: 
incubator/woden/java/src/org/apache/woden/internal/wsdl20/InterfaceOperationImpl.java
URL: 
http://svn.apache.org/viewcvs/incubator/woden/java/src/org/apache/woden/internal/wsdl20/InterfaceOperationImpl.java?rev=293055&view=auto
==============================================================================
--- 
incubator/woden/java/src/org/apache/woden/internal/wsdl20/InterfaceOperationImpl.java
 (added)
+++ 
incubator/woden/java/src/org/apache/woden/internal/wsdl20/InterfaceOperationImpl.java
 Sat Oct  1 18:43:22 2005
@@ -0,0 +1,153 @@
+/**

+ * Copyright 2005 Apached Software Foundation 

+ *

+ * Licensed under the Apache License, Version 2.0 (the "License"); 

+ * you may not use this file except in compliance with the License. 

+ * You may obtain a copy of the License at 

+ * 

+ *     http://www.apache.org/licenses/LICENSE-2.0 

+ * 

+ * Unless required by applicable law or agreed to in writing, software 

+ * distributed under the License is distributed on an "AS IS" BASIS, 

+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 

+ * See the License for the specific language governing permissions and 

+ * limitations under the License.

+ */

+package org.apache.woden.internal.wsdl20;

+

+import java.net.URI;

+

+import javax.xml.namespace.QName;

+

+import org.apache.woden.wsdl20.Component;

+import org.apache.woden.wsdl20.Feature;

+import org.apache.woden.wsdl20.InterfaceFaultReference;

+import org.apache.woden.wsdl20.InterfaceMessageReference;

+import org.apache.woden.wsdl20.Property;

+import org.apache.woden.wsdl20.xml.DocumentationElement;

+import org.apache.woden.wsdl20.xml.FeatureElement;

+import org.apache.woden.wsdl20.xml.InterfaceOperationElement;

+import org.apache.woden.wsdl20.xml.PropertyElement;

+

+/**

+ * This class represents the InterfaceOperation component from the WSDL 2.0 
Component 

+ * Model and the &lt.operation&gt. child element of the <interface> 
element. 

+ * 

+ * @author [EMAIL PROTECTED]

+ */

+public class InterfaceOperationImpl implements

+        org.apache.woden.wsdl20.InterfaceOperation, InterfaceOperationElement {

+

+    /* (non-Javadoc)

+     * @see org.apache.woden.wsdl20.InterfaceOperation#getName()

+     */

+    public QName getName() {

+        // TODO Auto-generated method stub

+        return null;

+    }

+

+    /* (non-Javadoc)

+     * @see 
org.apache.woden.wsdl20.InterfaceOperation#getMessageExchangePattern()

+     */

+    public URI getMessageExchangePattern() {

+        // TODO Auto-generated method stub

+        return null;

+    }

+

+    /* (non-Javadoc)

+     * @see 
org.apache.woden.wsdl20.InterfaceOperation#getInterfaceMessageReferences()

+     */

+    public InterfaceMessageReference[] getInterfaceMessageReferences() {

+        // TODO Auto-generated method stub

+        return null;

+    }

+

+    /* (non-Javadoc)

+     * @see 
org.apache.woden.wsdl20.InterfaceOperation#getInterfaceFaultReferences()

+     */

+    public InterfaceFaultReference[] getInterfaceFaultReferences() {

+        // TODO Auto-generated method stub

+        return null;

+    }

+

+    /* (non-Javadoc)

+     * @see org.apache.woden.wsdl20.InterfaceOperation#getStyle()

+     */

+    public URI[] getStyle() {

+        // TODO Auto-generated method stub

+        return null;

+    }

+

+    /* (non-Javadoc)

+     * @see org.apache.woden.wsdl20.NestedComponent#getParent()

+     */

+    public Component getParent() {

+        // TODO Auto-generated method stub

+        return null;

+    }

+

+    /* (non-Javadoc)

+     * @see org.apache.woden.wsdl20.ConfigurableComponent#getFeatures()

+     */

+    public Feature[] getFeatures() {

+        // TODO Auto-generated method stub

+        return null;

+    }

+

+    /* (non-Javadoc)

+     * @see org.apache.woden.wsdl20.ConfigurableComponent#getProperties()

+     */

+    public Property[] getProperties() {

+        // TODO Auto-generated method stub

+        return null;

+    }

+

+    /* (non-Javadoc)

+     * @see 
org.apache.woden.wsdl20.xml.DocumentableElement#setDocumentationElement(org.apache.woden.wsdl20.xml.DocumentationElement)

+     */

+    public void setDocumentationElement(DocumentationElement docEl) {

+        // TODO Auto-generated method stub

+

+    }

+

+    /* (non-Javadoc)

+     * @see 
org.apache.woden.wsdl20.xml.DocumentableElement#getDocumentationElement()

+     */

+    public DocumentationElement getDocumentationElement() {

+        // TODO Auto-generated method stub

+        return null;

+    }

+

+    /* (non-Javadoc)

+     * @see 
org.apache.woden.wsdl20.xml.ConfigurableElement#addFeatureElement(org.apache.woden.wsdl20.xml.FeatureElement)

+     */

+    public void addFeatureElement(FeatureElement feature) {

+        // TODO Auto-generated method stub

+

+    }

+

+    /* (non-Javadoc)

+     * @see 
org.apache.woden.wsdl20.xml.ConfigurableElement#getFeatureElements()

+     */

+    public FeatureElement[] getFeatureElements() {

+        // TODO Auto-generated method stub

+        return null;

+    }

+

+    /* (non-Javadoc)

+     * @see 
org.apache.woden.wsdl20.xml.ConfigurableElement#addPropertyElement(org.apache.woden.wsdl20.xml.PropertyElement)

+     */

+    public void addPropertyElement(PropertyElement property) {

+        // TODO Auto-generated method stub

+

+    }

+

+    /* (non-Javadoc)

+     * @see 
org.apache.woden.wsdl20.xml.ConfigurableElement#getPropertyElements()

+     */

+    public PropertyElement[] getPropertyElements() {

+        // TODO Auto-generated method stub

+        return null;

+    }

+

+}


Added: 
incubator/woden/java/src/org/apache/woden/internal/wsdl20/PropertyImpl.java
URL: 
http://svn.apache.org/viewcvs/incubator/woden/java/src/org/apache/woden/internal/wsdl20/PropertyImpl.java?rev=293055&view=auto
==============================================================================
--- incubator/woden/java/src/org/apache/woden/internal/wsdl20/PropertyImpl.java 
(added)
+++ incubator/woden/java/src/org/apache/woden/internal/wsdl20/PropertyImpl.java 
Sat Oct  1 18:43:22 2005
@@ -0,0 +1,80 @@
+/**

+ * Copyright 2005 Apached Software Foundation 

+ *

+ * Licensed under the Apache License, Version 2.0 (the "License"); 

+ * you may not use this file except in compliance with the License. 

+ * You may obtain a copy of the License at 

+ * 

+ *     http://www.apache.org/licenses/LICENSE-2.0 

+ * 

+ * Unless required by applicable law or agreed to in writing, software 

+ * distributed under the License is distributed on an "AS IS" BASIS, 

+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 

+ * See the License for the specific language governing permissions and 

+ * limitations under the License.

+ */

+package org.apache.woden.internal.wsdl20;

+

+import org.apache.woden.wsdl20.Component;

+import org.apache.woden.wsdl20.Property;

+import org.apache.woden.wsdl20.TypeDefinition;

+import org.apache.woden.wsdl20.xml.DocumentationElement;

+import org.apache.woden.wsdl20.xml.PropertyElement;

+

+/**

+ * This class implements support for the <wsdl:property> element 

+ * and the Property component in the WSDL Component model.

+ * 

+ * @author [EMAIL PROTECTED]

+ */

+public class PropertyImpl implements Property, PropertyElement {

+

+    /* (non-Javadoc)

+     * @see org.apache.woden.wsdl20.Property#getRef()

+     */

+    public String getRef() {

+        // TODO Auto-generated method stub

+        return null;

+    }

+

+    /* (non-Javadoc)

+     * @see org.apache.woden.wsdl20.Property#getValueConstraint()

+     */

+    public TypeDefinition getValueConstraint() {

+        // TODO Auto-generated method stub

+        return null;

+    }

+

+    /* (non-Javadoc)

+     * @see org.apache.woden.wsdl20.Property#getValue()

+     */

+    public Object getValue() {

+        // TODO Auto-generated method stub

+        return null;

+    }

+

+    /* (non-Javadoc)

+     * @see org.apache.woden.wsdl20.NestedComponent#getParent()

+     */

+    public Component getParent() {

+        // TODO Auto-generated method stub

+        return null;

+    }

+

+    /* (non-Javadoc)

+     * @see 
org.apache.woden.wsdl20.xml.DocumentableElement#setDocumentationElement(org.apache.woden.wsdl20.xml.DocumentationElement)

+     */

+    public void setDocumentationElement(DocumentationElement docEl) {

+        // TODO Auto-generated method stub

+

+    }

+

+    /* (non-Javadoc)

+     * @see 
org.apache.woden.wsdl20.xml.DocumentableElement#getDocumentationElement()

+     */

+    public DocumentationElement getDocumentationElement() {

+        // TODO Auto-generated method stub

+        return null;

+    }

+

+}




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

Reply via email to