Return-Path: Delivered-To: apmail-ws-axis-cvs-archive@www.apache.org Received: (qmail 34490 invoked from network); 4 Oct 2007 11:52:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 4 Oct 2007 11:52:32 -0000 Received: (qmail 35720 invoked by uid 500); 4 Oct 2007 11:52:20 -0000 Delivered-To: apmail-ws-axis-cvs-archive@ws.apache.org Received: (qmail 35431 invoked by uid 500); 4 Oct 2007 11:52:19 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 35420 invoked by uid 500); 4 Oct 2007 11:52:19 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 35417 invoked by uid 99); 4 Oct 2007 11:52:19 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Oct 2007 04:52:19 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Oct 2007 11:52:29 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 5421C1A9832; Thu, 4 Oct 2007 04:51:39 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r581865 - in /webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl: codegen/emitter/ template/java/ Date: Thu, 04 Oct 2007 11:51:38 -0000 To: axis2-cvs@ws.apache.org From: amilas@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071004115139.5421C1A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: amilas Date: Thu Oct 4 04:51:37 2007 New Revision: 581865 URL: http://svn.apache.org/viewvc?rev=581865&view=rev Log: added the wsdl operation comments to the method signature Modified: webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/codegen/emitter/AxisServiceBasedMultiLanguageEmitter.java webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/InterfaceImplementationTemplate.xsl webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/InterfaceTemplate.xsl webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/SkeletonInterfaceTemplate.xsl webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/SkeletonTemplate.xsl Modified: webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/codegen/emitter/AxisServiceBasedMultiLanguageEmitter.java URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/codegen/emitter/AxisServiceBasedMultiLanguageEmitter.java?rev=581865&r1=581864&r2=581865&view=diff ============================================================================== --- webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/codegen/emitter/AxisServiceBasedMultiLanguageEmitter.java (original) +++ webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/codegen/emitter/AxisServiceBasedMultiLanguageEmitter.java Thu Oct 4 04:51:37 2007 @@ -2164,6 +2164,13 @@ addAttribute(doc, "style", (String) getBindingPropertyFromOperation( WSDLConstants.WSDL_1_1_STYLE, axisOperation.getName()), methodElement); + // add documentation for this operation + String comment = ""; + if (axisOperation.getDocumentation() != null){ + comment = axisOperation.getDocumentation(); + } + addAttribute(doc, "comment", comment, methodElement); + String messageExchangePattern = axisOperation.getMessageExchangePattern(); //Jaxws Specific Modified: webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/InterfaceImplementationTemplate.xsl URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/InterfaceImplementationTemplate.xsl?rev=581865&r1=581864&r2=581865&view=diff ============================================================================== --- webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/InterfaceImplementationTemplate.xsl (original) +++ webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/InterfaceImplementationTemplate.xsl Thu Oct 4 04:51:37 2007 @@ -231,6 +231,7 @@ /** * Auto generated method signature + * * @see .# * @param @@ -568,6 +569,7 @@ /** * Auto generated method signature for Asynchronous Invocations + * * @see .#start * @param @@ -873,6 +875,10 @@ + /** + * Auto generated method signature + * + */ public void ( Modified: webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/InterfaceTemplate.xsl URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/InterfaceTemplate.xsl?rev=581865&r1=581864&r2=581865&view=diff ============================================================================== --- webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/InterfaceTemplate.xsl (original) +++ webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/InterfaceTemplate.xsl Thu Oct 4 04:51:37 2007 @@ -60,7 +60,8 @@ /** - * Auto generated method signature + * Auto generated method signature + * * @param @@ -144,6 +145,7 @@ /** * Auto generated method signature for Asynchronous Invocations + * * @param @@ -183,7 +185,10 @@ - + /** + * Auto generated method signature for Asynchronous Invocations + * + */ public void ( Modified: webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/SkeletonInterfaceTemplate.xsl URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/SkeletonInterfaceTemplate.xsl?rev=581865&r1=581864&r2=581865&view=diff ============================================================================== --- webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/SkeletonInterfaceTemplate.xsl (original) +++ webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/SkeletonInterfaceTemplate.xsl Thu Oct 4 04:51:37 2007 @@ -40,6 +40,8 @@ java method --> /** * Auto generated method signature + * + Modified: webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/SkeletonTemplate.xsl URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/SkeletonTemplate.xsl?rev=581865&r1=581864&r2=581865&view=diff ============================================================================== --- webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/SkeletonTemplate.xsl (original) +++ webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/SkeletonTemplate.xsl Thu Oct 4 04:51:37 2007 @@ -41,6 +41,7 @@ java method --> /** * Auto generated method signature + * --------------------------------------------------------------------- To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org For additional commands, e-mail: axis-cvs-help@ws.apache.org