You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by sa...@apache.org on 2007/03/20 08:50:32 UTC

svn commit: r520305 - /webservices/axis2/trunk/java/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/CodeGenWizard.java

Author: sandakith
Date: Tue Mar 20 00:50:30 2007
New Revision: 520305

URL: http://svn.apache.org/viewvc?view=rev&rev=520305
Log:
fix the eclipse codegen plugin break, via codegen constructor change

Modified:
    webservices/axis2/trunk/java/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/CodeGenWizard.java

Modified: webservices/axis2/trunk/java/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/CodeGenWizard.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/CodeGenWizard.java?view=diff&rev=520305&r1=520304&r2=520305
==============================================================================
--- webservices/axis2/trunk/java/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/CodeGenWizard.java (original)
+++ webservices/axis2/trunk/java/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/CodeGenWizard.java Tue Mar 20 00:50:30 2007
@@ -243,8 +243,10 @@
                                                                                                 optionsPage.getNs2PkgMapping(),
                                                                                                 isGenerateServerSideInterface);
 
-                 
-                 CodeGenConfiguration codegenConfig = new CodeGenConfiguration(service, optionsMap);
+                 //Fix for the CodeGenConfiguration Contructor Change
+                 //CodeGenConfiguration codegenConfig = new CodeGenConfiguration(service, optionsMap);
+                 CodeGenConfiguration codegenConfig = new CodeGenConfiguration(optionsMap);
+                 codegenConfig.setAxisService(service);
                  //set the baseURI
                  codegenConfig.setBaseURI(generator.getBaseUri(wsdlSelectionPage.getFileName()));
                  monitor.worked(1);



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org