You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by mc...@apache.org on 2008/05/13 16:10:08 UTC

svn commit: r655873 - /incubator/tuscany/java/sca/modules/binding-ws/src/main/java/org/apache/tuscany/sca/binding/ws/WebServiceBinding.java

Author: mcombellack
Date: Tue May 13 07:10:08 2008
New Revision: 655873

URL: http://svn.apache.org/viewvc?rev=655873&view=rev
Log:
Minor corrections to the JavaDoc

Modified:
    incubator/tuscany/java/sca/modules/binding-ws/src/main/java/org/apache/tuscany/sca/binding/ws/WebServiceBinding.java

Modified: incubator/tuscany/java/sca/modules/binding-ws/src/main/java/org/apache/tuscany/sca/binding/ws/WebServiceBinding.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/binding-ws/src/main/java/org/apache/tuscany/sca/binding/ws/WebServiceBinding.java?rev=655873&r1=655872&r2=655873&view=diff
==============================================================================
--- incubator/tuscany/java/sca/modules/binding-ws/src/main/java/org/apache/tuscany/sca/binding/ws/WebServiceBinding.java (original)
+++ incubator/tuscany/java/sca/modules/binding-ws/src/main/java/org/apache/tuscany/sca/binding/ws/WebServiceBinding.java Tue May 13 07:10:08 2008
@@ -57,7 +57,7 @@
     /**
      * Sets the name of the WSDL service.
      * 
-     * @param className the name of the WSDL service
+     * @param serviceName the name of the WSDL service
      */
     void setServiceName(QName serviceName);
 
@@ -71,7 +71,7 @@
     /**
      * Sets the name of the WSDL port.
      * 
-     * @param className the name of the WSDL port
+     * @param portName the name of the WSDL port
      */
     void setPortName(String portName);
 
@@ -85,7 +85,7 @@
     /**
      * Sets the name of the WSDL binding.
      * 
-     * @param className the name of the WSDL binding
+     * @param bindingName the name of the WSDL binding
      */
     void setBindingName(QName bindingName);
 
@@ -99,7 +99,7 @@
     /**
      * Sets the name of the WSDL endpoint.
      * 
-     * @param className the name of the WSDL endpoint
+     * @param endpointName the name of the WSDL endpoint
      */
     void setEndpointName(String endpointName);
 
@@ -123,7 +123,7 @@
     
     /**
      * Sets the WSDL endpoint
-     * @param port the WSDL endpoint
+     * @param endpoint the WSDL endpoint
      */
     void setEndpoint(Port endpoint);
     
@@ -152,14 +152,14 @@
     void setBinding(javax.wsdl.Binding binding);
 
     /**
-     * Returns the WSDL binding.
-     * @return the WSDL binding
+     * Returns the WSDL definition.
+     * @return the WSDL definition
      */
     WSDLDefinition getWSDLDefinition();
     
     /**
-     * Sets the WSDL binding
-     * @param binding the WSDL binding
+     * Sets the WSDL definition.
+     * @param wsdlDefinition the WSDL definition
      */
     void setDefinition(WSDLDefinition wsdlDefinition);
 
@@ -171,7 +171,7 @@
     
     /**
      * Sets the WSDL namespace
-     * @param namspace the WSDL namspace
+     * @param namespace the WSDL namespace
      */
     void setNamespace(String namespace);