You are viewing a plain text version of this content. The canonical link for it is here.
Posted to woden-dev@ws.apache.org by jk...@apache.org on 2005/10/03 07:12:25 UTC

svn commit: r293248 - /incubator/woden/java/src/org/apache/woden/wsdl20/xml/DocumentableElement.java

Author: jkaputin
Date: Sun Oct  2 22:12:19 2005
New Revision: 293248

URL: http://svn.apache.org/viewcvs?rev=293248&view=rev
Log:
Changed <documentation> from a single element to a list of 
elements, per the spec.

Modified:
    incubator/woden/java/src/org/apache/woden/wsdl20/xml/DocumentableElement.java

Modified: incubator/woden/java/src/org/apache/woden/wsdl20/xml/DocumentableElement.java
URL: http://svn.apache.org/viewcvs/incubator/woden/java/src/org/apache/woden/wsdl20/xml/DocumentableElement.java?rev=293248&r1=293247&r2=293248&view=diff
==============================================================================
--- incubator/woden/java/src/org/apache/woden/wsdl20/xml/DocumentableElement.java (original)
+++ incubator/woden/java/src/org/apache/woden/wsdl20/xml/DocumentableElement.java Sun Oct  2 22:12:19 2005
@@ -16,14 +16,15 @@
 package org.apache.woden.wsdl20.xml;
 
 /**
- * Interfaces for WSDL 2.0 elements which may have a &lt.documentation&gt. 
- * child element will extend this interface. That is, all WSDL 2.0 elements
+ * Interfaces for WSDL 2.0 elements which may have &lt.documentation&gt. 
+ * child elements will extend this interface. That is, all WSDL 2.0 elements
  * except the &lt.documentation&gt. element itself.
  * 
  * @author jkaputin@apache.org
  */
 public interface DocumentableElement extends WSDL20Element 
 {
-    public void setDocumentationElement(DocumentationElement docEl);
-    public DocumentationElement getDocumentationElement();
+    public void addDocumentationElement(DocumentationElement docEl);
+    
+    public DocumentationElement[] getDocumentationElements();
 }



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