Author: ruchithf
Date: Sun Oct 1 23:47:04 2006
New Revision: 451893
URL: http://svn.apache.org/viewvc?view=rev&rev=451893
Log:
fixing typos
Modified:
webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/addressing/wsdl/WSDL11ActionHelper.java
Modified: webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/addressing/wsdl/WSDL11ActionHelper.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/addressing/wsdl/WSDL11ActionHelper.java?view=diff&rev=451893&r1=451892&r2=451893
==============================================================================
--- webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/addressing/wsdl/WSDL11ActionHelper.java
(original)
+++ webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/addressing/wsdl/WSDL11ActionHelper.java
Sun Oct 1 23:47:04 2006
@@ -42,11 +42,11 @@
/**
* getActionFromInputElement
- * @param def the wsdl:defintion which contains the wsdl:portType
+ * @param def the wsdl:definitions which contains the wsdl:portType
* @param wsdl4jPortType the wsdl:portType which contains the wsdl:operation
* @param op the wsdl:operation which contains the input element
* @param input the input element to be examined to generate the wsa:Action
- * @return either the wsaw:Action from the input element or an action genernated using the
DefaultActionPattern
+ * @return either the wsaw:Action from the input element or an action generated using the
DefaultActionPattern
*/
public static String getActionFromInputElement(Definition def, PortType wsdl4jPortType,
Operation op, Input input){
String result = getWSAWActionExtensionAttribute(input);
@@ -59,11 +59,11 @@
/**
* getActionFromOutputElement
- * @param def the wsdl:defintion which contains the wsdl:portType
+ * @param def the wsdl:definitions which contains the wsdl:portType
* @param wsdl4jPortType the wsdl:portType which contains the wsdl:operation
* @param op the wsdl:operation which contains the output element
* @param output the input element to be examined to generate the wsa:Action
- * @return either the wsaw:Action from the output element or an action genernated using
the DefaultActionPattern
+ * @return either the wsaw:Action from the output element or an action generated using the
DefaultActionPattern
*/
public static String getActionFromOutputElement(Definition def, PortType wsdl4jPortType,
Operation op, Output output){
String result = getWSAWActionExtensionAttribute(output);
@@ -76,11 +76,11 @@
/**
* getActionFromFaultElement
- * @param def the wsdl:defintion which contains the wsdl:portType
+ * @param def the wsdl:definitions which contains the wsdl:portType
* @param wsdl4jPortType the wsdl:portType which contains the wsdl:operation
* @param op the wsdl:operation which contains the fault element
* @param fault the fault element to be examined to generate the wsa:Action
- * @return either the wsaw:Action from the fault element or an action genernated using the
DefaultActionPattern
+ * @return either the wsaw:Action from the fault element or an action generated using the
DefaultActionPattern
*/
public static String getActionFromFaultElement(Definition def, PortType wsdl4jPortType,
Operation op, Fault fault){
String result = getWSAWActionExtensionAttribute(fault);
---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org
|