[jbosstools-commits] JBoss Tools SVN: r13306 - in trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe: resref and 1 other directory.

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Wed Jan 28 10:28:30 EST 2009


Author: mareshkau
Date: 2009-01-28 10:28:29 -0500 (Wed, 28 Jan 2009)
New Revision: 13306

Modified:
   trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/messages/messages.properties
   trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/resref/VpeResourcesDialogView.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-3643, dialog  size and description messages were adjusted for page design options dialog

Modified: trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/messages/messages.properties
===================================================================
--- trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/messages/messages.properties	2009-01-28 14:40:59 UTC (rev 13305)
+++ trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/messages/messages.properties	2009-01-28 15:28:29 UTC (rev 13306)
@@ -78,8 +78,8 @@
 INSERT_AFTER=Insert After
 REPLACE_WITH=Replace With
 FROM_PALETTE=From Palette
-PAGE_DESIGN_OPTIONS_ABOUT=Here you can configure Visual Page Editor arguments, which will be used for generating a preview
-ACTUAL_RUN_TIME_FOLDERS_ABOUT=This parameters will be used by Visual Page Editor for replacing absolute and relative path values when generating a preview
-INCLUDED_CSS_FILES_ABOUT=This CSS files will be linked by Visual Page Editor when generating a preview
-INCLUDED_TAG_LIBS_ABOUT=This Taglibs will be used by Visual Page Editor for getting appropriate template for generating a preview, if this Taglibs doesn't included on page
-SUBSTITUTED_EL_EXPRESSIONS_ABOUT=This EL expressions will be substituted by Visual Page Editor when generating a  preview 
+PAGE_DESIGN_OPTIONS_ABOUT=Here you can configure Visual Page Editor options, which will be used for generating a preview
+ACTUAL_RUN_TIME_FOLDERS_ABOUT=These options will be used by Visual Page Editor for replacing absolute and relative path values when generating a preview
+INCLUDED_CSS_FILES_ABOUT=These CSS files will be linked by Visual Page Editor when generating a preview
+INCLUDED_TAG_LIBS_ABOUT=These Taglibs will be used by Visual Page Editor for getting appropriate template for generating a preview, if this Taglibs doesn't included on page
+SUBSTITUTED_EL_EXPRESSIONS_ABOUT=These EL expressions will be substituted by Visual Page Editor when generating a  preview 

Modified: trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/resref/VpeResourcesDialogView.java
===================================================================
--- trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/resref/VpeResourcesDialogView.java	2009-01-28 14:40:59 UTC (rev 13305)
+++ trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/resref/VpeResourcesDialogView.java	2009-01-28 15:28:29 UTC (rev 13306)
@@ -111,7 +111,8 @@
 	return tabFolder;
     }
 
-    public void action(String command) {
+    @Override
+	public void action(String command) {
 	if (OK.equals(command)) {
 	    absFolder.commit();
 	    relFolder.commit();
@@ -122,7 +123,8 @@
 	super.action(command);
     }
 
-    public Point getPreferredSize() {
+    @Override
+	public Point getPreferredSize() {
 	// changed by estherbin
 	// http://jira.jboss.com/jira/browse/JBIDE-2010
 	String os_name = System.getProperty("os.name"); //$NON-NLS-1$
@@ -131,7 +133,7 @@
 	}
 	// changed by estherbin
 	// http://jira.jboss.com/jira/browse/JBIDE-2010
-	return new Point(400, 285);
+	return new Point(580, 285);
     }
 
 }




More information about the jbosstools-commits mailing list