Author: jkaputin
Date: Thu Jun  8 12:30:40 2006
New Revision: 412843

URL: http://svn.apache.org/viewvc?rev=412843&view=rev
Log:
Improved Javadoc comments to eliminate Javadoc 
warnings emitted by the Ant build task.

Modified:
    incubator/woden/java/src/org/apache/woden/WSDLReader.java
    
incubator/woden/java/src/org/apache/woden/internal/xml/IntOrTokenAnyAttrImpl.java
    
incubator/woden/java/src/org/apache/woden/wsdl20/InterfaceMessageReference.java
    incubator/woden/java/src/org/apache/woden/xml/IntOrTokenAttr.java
    incubator/woden/java/src/org/apache/woden/xml/QNameListOrTokenAttr.java
    incubator/woden/java/src/org/apache/woden/xml/QNameOrTokenAttr.java

Modified: incubator/woden/java/src/org/apache/woden/WSDLReader.java
URL: 
http://svn.apache.org/viewvc/incubator/woden/java/src/org/apache/woden/WSDLReader.java?rev=412843&r1=412842&r2=412843&view=diff
==============================================================================
--- incubator/woden/java/src/org/apache/woden/WSDLReader.java (original)
+++ incubator/woden/java/src/org/apache/woden/WSDLReader.java Thu Jun  8 
12:30:40 2006
@@ -172,7 +172,7 @@
      * @throws WSDLException for terminating errors and as a wrapper
      * for checked exceptions
      */
-    public DescriptionElement readWSDL(WSDLSource wsdlsource, ErrorHandler 
errorHandler) throws WSDLException;
+    public DescriptionElement readWSDL(WSDLSource wsdlSource, ErrorHandler 
errorHandler) throws WSDLException;
    
     //TODO - a readWSDL method that returns a Description (eg a component)
     
@@ -195,8 +195,8 @@
     
     /**
      * Store the name of the WSDLFactory implementation class to be used for  
-     * any subsequent WSDLFactory requests (i.e. this will replace any  
-     * existing factory object in use).
+     * any subsequent WSDLFactory requests. The named factory class will 
+     * replace any existing factory object in use.
      * 
      * @param factoryImplName the WSDLFactory implementation classname
      */

Modified: 
incubator/woden/java/src/org/apache/woden/internal/xml/IntOrTokenAnyAttrImpl.java
URL: 
http://svn.apache.org/viewvc/incubator/woden/java/src/org/apache/woden/internal/xml/IntOrTokenAnyAttrImpl.java?rev=412843&r1=412842&r2=412843&view=diff
==============================================================================
--- 
incubator/woden/java/src/org/apache/woden/internal/xml/IntOrTokenAnyAttrImpl.java
 (original)
+++ 
incubator/woden/java/src/org/apache/woden/internal/xml/IntOrTokenAnyAttrImpl.java
 Thu Jun  8 12:30:40 2006
@@ -23,8 +23,8 @@
 
 /**
  * This class represents XML attribute information items of type
- * "Union of xs:int, xs:token #any"
- * (e.g. the whttp:code extension attribute of binding fault).
+ * 'Union of xs:int, xs:token #any', for example the 
+ * whttp:code extension attribute of binding <fault>.
  * 
  * @author [EMAIL PROTECTED]
  */

Modified: 
incubator/woden/java/src/org/apache/woden/wsdl20/InterfaceMessageReference.java
URL: 
http://svn.apache.org/viewvc/incubator/woden/java/src/org/apache/woden/wsdl20/InterfaceMessageReference.java?rev=412843&r1=412842&r2=412843&view=diff
==============================================================================
--- 
incubator/woden/java/src/org/apache/woden/wsdl20/InterfaceMessageReference.java 
(original)
+++ 
incubator/woden/java/src/org/apache/woden/wsdl20/InterfaceMessageReference.java 
Thu Jun  8 12:30:40 2006
@@ -30,9 +30,10 @@
     public Direction getDirection();
     
     /**
-     * Indicates the type of message content.#any means any single element, 
-     * #none means no message content, #other means non-XML extension type 
system
-     * or #element means XML Schema global element definition.
+     * Represents a token indicating the type of message content. 
+     * '#any' means any single element, '#none' means no message content, 
+     * '#other' means non-XML extension type system and '#element' means 
+     * XML Schema global element definition.
      *   
      * @return string representing the type of message content
      */

Modified: incubator/woden/java/src/org/apache/woden/xml/IntOrTokenAttr.java
URL: 
http://svn.apache.org/viewvc/incubator/woden/java/src/org/apache/woden/xml/IntOrTokenAttr.java?rev=412843&r1=412842&r2=412843&view=diff
==============================================================================
--- incubator/woden/java/src/org/apache/woden/xml/IntOrTokenAttr.java (original)
+++ incubator/woden/java/src/org/apache/woden/xml/IntOrTokenAttr.java Thu Jun  
8 12:30:40 2006
@@ -18,8 +18,8 @@
 
 /**
  * This interface represents XML attribute information items of type 
- * "Union of xs:int, xs:token"
- * (e.g. the whttp:code extension attribute of binding fault).
+ * 'Union of xs:int, xs:token', for example
+ * the whttp:code extension attribute of binding <fault>.
  * <p>
  * The <code>isInt</code> and <code>isToken</code> methods determine whether 
  * to call the <code>getInt</code> or <code>getToken</code> methods. 

Modified: 
incubator/woden/java/src/org/apache/woden/xml/QNameListOrTokenAttr.java
URL: 
http://svn.apache.org/viewvc/incubator/woden/java/src/org/apache/woden/xml/QNameListOrTokenAttr.java?rev=412843&r1=412842&r2=412843&view=diff
==============================================================================
--- incubator/woden/java/src/org/apache/woden/xml/QNameListOrTokenAttr.java 
(original)
+++ incubator/woden/java/src/org/apache/woden/xml/QNameListOrTokenAttr.java Thu 
Jun  8 12:30:40 2006
@@ -19,8 +19,8 @@
 
 /**
  * This interface represents XML attribute information items of type 
- * "Union of list of xs:QName or xs:token"
- * (e.g. the wsoap:subcodes extension attribute of binding fault).
+ * 'Union of list of xs:QName or xs:token', for example
+ * the wsoap:subcodes extension attribute of binding &lt;fault&gt;.
  * <p>
  * The <code>isQNameList</code> method can be used to determine whether
  * to call the <code>getQNames</code> method or the <code>getToken</code>

Modified: incubator/woden/java/src/org/apache/woden/xml/QNameOrTokenAttr.java
URL: 
http://svn.apache.org/viewvc/incubator/woden/java/src/org/apache/woden/xml/QNameOrTokenAttr.java?rev=412843&r1=412842&r2=412843&view=diff
==============================================================================
--- incubator/woden/java/src/org/apache/woden/xml/QNameOrTokenAttr.java 
(original)
+++ incubator/woden/java/src/org/apache/woden/xml/QNameOrTokenAttr.java Thu Jun 
 8 12:30:40 2006
@@ -19,8 +19,8 @@
 
 /**
  * This interface represents XML attribute information items of type 
- * "Union of xs:QName or xs:token"
- * (e.g. the wsoap:code extension attribute of binding fault).
+ * 'Union of xs:QName or xs:token', for example
+ * the wsoap:code extension attribute of binding &lt;fault&gt;.
  * <p>
  * The <code>isQName</code> method can be used to determine whether
  * to call the <code>getQName</code> method or the <code>getToken</code>



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

Reply via email to