You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by ch...@apache.org on 2006/10/24 07:51:25 UTC

svn commit: r467252 - in /webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen: eclipse/ui/JavaSourceSelectionPage.java resource/Codegen.properties

Author: chinthaka
Date: Mon Oct 23 22:51:24 2006
New Revision: 467252

URL: http://svn.apache.org/viewvc?view=rev&rev=467252
Log:
Applying the patch in AXIS2-1462. Thanks Sandakith

Modified:
    webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/JavaSourceSelectionPage.java
    webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/resource/Codegen.properties

Modified: webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/JavaSourceSelectionPage.java
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/JavaSourceSelectionPage.java?view=diff&rev=467252&r1=467251&r2=467252
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/JavaSourceSelectionPage.java (original)
+++ webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/JavaSourceSelectionPage.java Mon Oct 23 22:51:24 2006
@@ -24,6 +24,9 @@
 import org.eclipse.swt.events.ModifyListener;
 import org.eclipse.swt.events.MouseAdapter;
 import org.eclipse.swt.events.MouseEvent;
+import org.eclipse.swt.graphics.Device;
+import org.eclipse.swt.graphics.Font;
+import org.eclipse.swt.graphics.GCData;
 import org.eclipse.swt.layout.GridData;
 import org.eclipse.swt.layout.GridLayout;
 import org.eclipse.swt.widgets.Button;
@@ -188,6 +191,10 @@
 				.setText(CodegenWizardPlugin
 						.getResourceString("page4.hint.caption"));
 		hintLabel.setLayoutData(gd);
+		hintLabel.setFont(new Font(new Device() {
+			public int internal_new_GC(GCData data) {return 0;}
+			public void internal_dispose_GC(int handle, GCData data) {}
+											},"hintFont",8,SWT.NORMAL));
         
         setPageComplete(false);
         

Modified: webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/resource/Codegen.properties
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/resource/Codegen.properties?view=diff&rev=467252&r1=467251&r2=467252
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/resource/Codegen.properties (original)
+++ webservices/axis2/branches/java/1_1/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/resource/Codegen.properties Mon Oct 23 22:51:24 2006
@@ -119,7 +119,7 @@
 page4.tryLoad.label=Test Class Loading..
 page4.unknownError.label=Unknown error!
 page4.successLoading.label=Class file loaded successfully
-page4.hint.caption=Hint : Please give the fully qualified class name, example :com.foo.BarService\n         Then add the folder or the jar file which contains that class file. \n         Finally check whether the class file can be loaded from the plugin.
+page4.hint.caption=Hint : Please give the fully qualified class name, example :com.foo.BarService\n         Then add the folder or the jar file which contains that class file. \n         Finally check whether the class file can be loaded from the plugin. \n         If the class that you are going to load contains any dependencies \n         on other axis2 libraries ( for example like axiom*.jar), Please add those \n         libraries as well and try to Load the class.
 
 ###############################################################
 #java2wsdl options = page6



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