Author: dims
Date: Wed Dec 21 13:03:40 2005
New Revision: 358380

URL: http://svn.apache.org/viewcvs?rev=358380&view=rev
Log:
javadoc cleanup

Modified:
    
webservices/axis2/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/WSDLVersionWrapper.java
    
webservices/axis2/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/builder/WOMBuilder.java
    
webservices/axis2/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/builder/WSDL2ToWOMBuilder.java
    
webservices/axis2/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/builder/WSDLComponentFactory.java
    
webservices/axis2/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/builder/wsdl4j/WSDL1ToWOMBuilder.java

Modified: 
webservices/axis2/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/WSDLVersionWrapper.java
URL: 
http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/WSDLVersionWrapper.java?rev=358380&r1=358379&r2=358380&view=diff
==============================================================================
--- 
webservices/axis2/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/WSDLVersionWrapper.java
 (original)
+++ 
webservices/axis2/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/WSDLVersionWrapper.java
 Wed Dec 21 13:03:40 2005
@@ -38,18 +38,18 @@
     }
 
     /**
-     * Returns the WSDL 1.1 Definition
+     * Returns the WSDL 1.1 Definition.
      *
-     * @return <code>DEfinition</code>
+     * @return Returns <code>Definition</code>
      */
     public Definition getDefinition() {
         return definition;
     }
 
     /**
-     * Returns a WOM description
+     * Returns a WOM description.
      *
-     * @return <code>WSDLDescription</code>
+     * @return Returns <code>WSDLDescription</code>
      */
     public WSDLDescription getDescription() {
         return description;

Modified: 
webservices/axis2/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/builder/WOMBuilder.java
URL: 
http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/builder/WOMBuilder.java?rev=358380&r1=358379&r2=358380&view=diff
==============================================================================
--- 
webservices/axis2/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/builder/WOMBuilder.java
 (original)
+++ 
webservices/axis2/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/builder/WOMBuilder.java
 Wed Dec 21 13:03:40 2005
@@ -24,29 +24,29 @@
 public interface WOMBuilder {
 
        /**
-        * Buils a WOM and a WSDL4J object model from given the URI of the WSDL 
file and
-        * will be returned as a wrapper object WSDLVersionWrapper.
+        * Builds a WOM and a WSDL4J object model given the URI of the WSDL 
file and
+        * returns as a wrapper object WSDLVersionWrapper.
         * @param uri URI pointing to the WSDL document.
-        * @return WSDLVersionWrapper which contains both the WSDL 2.0 and WSDL 
1.1 
+        * @return Returns WSDLVersionWrapper which contains both the WSDL 2.0 
and WSDL 1.1 
         * object models.
         * @throws WSDLException
         */
     public WSDLVersionWrapper build(String uri) throws WSDLException;
     
     /**
-        * Buils a WOM and a WSDL4J object model from given the URI of the WSDL 
file and
-        * will be returned as a wrapper object WSDLVersionWrapper. A WSDL 
Component Factory
-        * can be passed into the builder using which the WOM component can be 
built out of.
-        * For example: The Enigne uses the WOM's components in the context 
hierarchy but 
+        * Builds a WOM and a WSDL4J object model given the URI of the WSDL 
file and
+        * returns a wrapper object WSDLVersionWrapper. A WSDL Component Factory
+        * can be passed into the builder using which the WOM component can be 
built.
+        * For example: The Engine uses the WOM's components in the context 
hierarchy but 
         * those are extended components. 
         * (<code>AxisService</code> extends <code>WSDLService</code>.)
         * So when deployment build the WOM it would prefer to get a 
<code>AxisService</code>
         * built in place of a <code>WSDLService</code>. This can be achieved 
by passing the 
-        * correct Component Factory that will instanciate the correct object 
for the WOM builder.
+        * correct Component Factory that will instantiate the correct object 
for the WOM builder.
         * @param uri URI pointing to the WSDL document.
         * @param wsdlComponentFactory The ComponentFactory that will be used 
to create the
-        * WOm components out of.
-        * @return WSDLVersionWrapper which contains both the WSDL 2.0 and WSDL 
1.1 
+        * WOM components out of.
+        * @return Returns WSDLVersionWrapper which contains both the WSDL 2.0 
and WSDL 1.1 
         * object models.
         * @throws WSDLException
         */
@@ -54,20 +54,20 @@
                                     WSDLComponentFactory wsdlComponentFactory) 
throws WSDLException;
     
     /**
-        * Buils a WOM and a WSDL4J object model from given the URI of the WSDL 
file and
-        * will be returned as a wrapper object WSDLVersionWrapper.
+        * Builds a WOM and a WSDL4J object model given the URI of the WSDL 
file and
+        * returns a wrapper object WSDLVersionWrapper.
         * @param in InputStream from which the WSDL document can be read in.
-        * @return WSDLVersionWrapper which contains both the WSDL 2.0 and WSDL 
1.1 
+        * @return Returns WSDLVersionWrapper which contains both the WSDL 2.0 
and WSDL 1.1 
         * object models.
         * @throws WSDLException
         */
     public WSDLVersionWrapper build(InputStream in) throws WSDLException ;
     
     /**
-        * Buils a WOM and a WSDL4J object model from given the URI of the WSDL 
file and
-        * will be returned as a wrapper object WSDLVersionWrapper. A WSDL 
Component Factory
-        * can be passed into the builder using which the WOM component can be 
built out of.
-        * For example: The Enigne uses the WOM's components in the context 
hierarchy but 
+        * Builds a WOM and a WSDL4J object model given the URI of the WSDL 
file and
+        * returns a wrapper object WSDLVersionWrapper. A WSDL Component Factory
+        * can be passed into the builder using which the WOM component can be 
built.
+        * For example: The Engine uses the WOM's components in the context 
hierarchy but 
         * those are extended components. 
         * (<code>AxisService</code> extends <code>WSDLService</code>.)
         * So when deployment build the WOM it would prefer to get a 
<code>AxisService</code>
@@ -76,7 +76,7 @@
         * @param in InputStream from which the WSDL document can be read in.
         * @param wsdlComponentFactory The ComponentFactory that will be used 
to create the
         * WOm components out of.
-        * @return WSDLVersionWrapper which contains both the WSDL 2.0 and WSDL 
1.1 
+        * @return Returns WSDLVersionWrapper which contains both the WSDL 2.0 
and WSDL 1.1 
         * object models.
         * @throws WSDLException
         */

Modified: 
webservices/axis2/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/builder/WSDL2ToWOMBuilder.java
URL: 
http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/builder/WSDL2ToWOMBuilder.java?rev=358380&r1=358379&r2=358380&view=diff
==============================================================================
--- 
webservices/axis2/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/builder/WSDL2ToWOMBuilder.java
 (original)
+++ 
webservices/axis2/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/builder/WSDL2ToWOMBuilder.java
 Wed Dec 21 13:03:40 2005
@@ -24,10 +24,10 @@
 public class WSDL2ToWOMBuilder implements WOMBuilder {
 
        /**
-        * Buils a WOM and a WSDL4J object model from given the URI of the WSDL 
file and
-        * will be returned as a wrapper object WSDLVersionWrapper.
+        * Builds a WOM and a WSDL4J object model given the URI of the WSDL 
file and
+        * returns a wrapper object WSDLVersionWrapper.
         * @param uri URI pointing to the WSDL document.
-        * @return WSDLVersionWrapper which contains both the WSDL 2.0 and WSDL 
1.1 
+        * @return Returns WSDLVersionWrapper which contains both the WSDL 2.0 
and WSDL 1.1 
         * object models.
         * @throws WSDLException
         */
@@ -36,19 +36,19 @@
     }
     
     /**
-        * Buils a WOM and a WSDL4J object model from given the URI of the WSDL 
file and
-        * will be returned as a wrapper object WSDLVersionWrapper. A WSDL 
Component Factory
-        * can be passed into the builder using which the WOM component can be 
built out of.
-        * For example: The Enigne uses the WOM's components in the context 
hierarchy but 
+        * Builds a WOM and a WSDL4J object model given the URI of the WSDL 
file and
+        * returns a wrapper object WSDLVersionWrapper. A WSDL Component Factory
+        * can be passed into the builder using which the WOM component can be 
built.
+        * For example: The Engine uses the WOM's components in the context 
hierarchy but 
         * those are extended components. 
         * (<code>AxisService</code> extends <code>WSDLService</code>.)
         * So when deployment build the WOM it would prefer to get a 
<code>AxisService</code>
         * built in place of a <code>WSDLService</code>. This can be achieved 
by passing the 
-        * correct Component Factory that will instanciate the correct object 
for the WOM builder.
+        * correct Component Factory that will instantiate the correct object 
for the WOM builder.
         * @param uri URI pointing to the WSDL document.
         * @param wsdlComponentFactory The ComponentFactory that will be used 
to create the
         * WOm components out of.
-        * @return WSDLVersionWrapper which contains both the WSDL 2.0 and WSDL 
1.1 
+        * @return Returns WSDLVersionWrapper which contains both the WSDL 2.0 
and WSDL 1.1 
         * object models.
         * @throws WSDLException
         */
@@ -58,10 +58,10 @@
     }
     
     /**
-        * Buils a WOM and a WSDL4J object model from given the URI of the WSDL 
file and
-        * will be returned as a wrapper object WSDLVersionWrapper.
+        * Builds a WOM and a WSDL4J object model given the URI of the WSDL 
file and
+        * returns a wrapper object WSDLVersionWrapper.
         * @param in InputStream from which the WSDL document can be read in.
-        * @return WSDLVersionWrapper which contains both the WSDL 2.0 and WSDL 
1.1 
+        * @return Returns WSDLVersionWrapper which contains both the WSDL 2.0 
and WSDL 1.1 
         * object models.
         * @throws WSDLException
         */
@@ -70,10 +70,10 @@
     }
     
     /**
-        * Buils a WOM and a WSDL4J object model from given the URI of the WSDL 
file and
-        * will be returned as a wrapper object WSDLVersionWrapper. A WSDL 
Component Factory
-        * can be passed into the builder using which the WOM component can be 
built out of.
-        * For example: The Enigne uses the WOM's components in the context 
hierarchy but 
+        * Builds a WOM and a WSDL4J object model given the URI of the WSDL 
file and
+        * returns a wrapper object WSDLVersionWrapper. A WSDL Component Factory
+        * can be passed into the builder using which the WOM component can be 
built. 
+        * For example: The Engine uses the WOM's components in the context 
hierarchy but 
         * those are extended components. 
         * (<code>AxisService</code> extends <code>WSDLService</code>.)
         * So when deployment build the WOM it would prefer to get a 
<code>AxisService</code>
@@ -82,7 +82,7 @@
         * @param in InputStream from which the WSDL document can be read in.
         * @param wsdlComponentFactory The ComponentFactory that will be used 
to create the
         * WOm components out of.
-        * @return WSDLVersionWrapper which contains both the WSDL 2.0 and WSDL 
1.1 
+        * @return Returns WSDLVersionWrapper which contains both the WSDL 2.0 
and WSDL 1.1 
         * object models.
         * @throws WSDLException
         */

Modified: 
webservices/axis2/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/builder/WSDLComponentFactory.java
URL: 
http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/builder/WSDLComponentFactory.java?rev=358380&r1=358379&r2=358380&view=diff
==============================================================================
--- 
webservices/axis2/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/builder/WSDLComponentFactory.java
 (original)
+++ 
webservices/axis2/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/builder/WSDLComponentFactory.java
 Wed Dec 21 13:03:40 2005
@@ -41,7 +41,7 @@
     public WSDLEndpoint createEndpoint();
 
     /**
-     * @return A new instance of type <code>WSDLFault</code>
+     * @return A new instance of type <code>WSDLFaultReference</code>
      */
     public WSDLFaultReference createFaultReference();
 

Modified: 
webservices/axis2/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/builder/wsdl4j/WSDL1ToWOMBuilder.java
URL: 
http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/builder/wsdl4j/WSDL1ToWOMBuilder.java?rev=358380&r1=358379&r2=358380&view=diff
==============================================================================
--- 
webservices/axis2/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/builder/wsdl4j/WSDL1ToWOMBuilder.java
 (original)
+++ 
webservices/axis2/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/builder/wsdl4j/WSDL1ToWOMBuilder.java
 Wed Dec 21 13:03:40 2005
@@ -37,10 +37,10 @@
 public class WSDL1ToWOMBuilder implements WOMBuilder {
 
     /**
-     * Buils a WOM and a WSDL4J object model from given the URI of the WSDL 
file and
-     * will be returned as a wrapper object WSDLVersionWrapper.
+     * Builds a WOM and a WSDL4J object model given the URI of the WSDL file 
and
+     * returns a wrapper object WSDLVersionWrapper.
      * @param in InputStream from which the WSDL document can be read in.
-     * @return WSDLVersionWrapper which contains both the WSDL 2.0 and WSDL 1.1
+     * @return Returns WSDLVersionWrapper which contains both the WSDL 2.0 and 
WSDL 1.1
      * object models.
      * @throws WSDLException
      */
@@ -49,10 +49,10 @@
     }
 
     /**
-     * Buils a WOM and a WSDL4J object model from given the URI of the WSDL 
file and
-     * will be returned as a wrapper object WSDLVersionWrapper. A WSDL 
Component Factory
+     * Builds a WOM and a WSDL4J object model given the URI of the WSDL file 
and
+     * returns a wrapper object WSDLVersionWrapper. A WSDL Component Factory
      * can be passed into the builder using which the WOM component can be 
built out of.
-     * For example: The Enigne uses the WOM's components in the context 
hierarchy but
+     * For example: The Engine uses the WOM's components in the context 
hierarchy but
      * those are extended components.
      * (<code>AxisService</code> extends <code>WSDLService</code>.)
      * So when deployment build the WOM it would prefer to get a 
<code>AxisService</code>
@@ -61,7 +61,7 @@
      * @param in InputStream from which the WSDL document can be read in.
      * @param wsdlComponentFactory The ComponentFactory that will be used to 
create the
      * WOm components out of.
-     * @return WSDLVersionWrapper which contains both the WSDL 2.0 and WSDL 1.1
+     * @return Returns WSDLVersionWrapper which contains both the WSDL 2.0 and 
WSDL 1.1
      * object models.
      * @throws WSDLException
      */
@@ -84,10 +84,10 @@
 
 
     /**
-     * Buils a WOM and a WSDL4J object model from given the URI of the WSDL 
file and
-     * will be returned as a wrapper object WSDLVersionWrapper.
+     * Builds a WOM and a WSDL4J object model given the URI of the WSDL file 
and
+     * returns a wrapper object WSDLVersionWrapper.
      * @param uri URI pointing to the WSDL document.
-     * @return WSDLVersionWrapper which contains both the WSDL 2.0 and WSDL 1.1
+     * @return Returns WSDLVersionWrapper which contains both the WSDL 2.0 and 
WSDL 1.1
      * object models.
      * @throws WSDLException
      */
@@ -96,10 +96,10 @@
     }
 
     /**
-     * Buils a WOM and a WSDL4J object model from given the URI of the WSDL 
file and
-     * will be returned as a wrapper object WSDLVersionWrapper. A WSDL 
Component Factory
-     * can be passed into the builder using which the WOM component can be 
built out of.
-     * For example: The Enigne uses the WOM's components in the context 
hierarchy but
+     * Builds a WOM and a WSDL4J object model given the URI of the WSDL file 
and
+     * returns a wrapper object WSDLVersionWrapper. A WSDL Component Factory
+     * can be passed into the builder using which the WOM component can be 
built.
+     * For example: The Engine uses the WOM's components in the context 
hierarchy but
      * those are extended components.
      * (<code>AxisService</code> extends <code>WSDLService</code>.)
      * So when deployment build the WOM it would prefer to get a 
<code>AxisService</code>
@@ -108,7 +108,7 @@
      * @param uri URI pointing to the WSDL document.
      * @param wsdlComponentFactory The ComponentFactory that will be used to 
create the
      * WOm components out of.
-     * @return WSDLVersionWrapper which contains both the WSDL 2.0 and WSDL 1.1
+     * @return Returns WSDLVersionWrapper which contains both the WSDL 2.0 and 
WSDL 1.1
      * object models.
      * @throws WSDLException
      */


Reply via email to