[jboss-svn-commits] JBL Code SVN: r13541 - labs/jbossrules/trunk/drools-eclipse/drools-eclipse-plugin/src/main/java/org/drools/eclipse/rulebuilder/wizards.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Mon Jul 16 01:41:12 EDT 2007
Author: michael.neale at jboss.com
Date: 2007-07-16 01:41:12 -0400 (Mon, 16 Jul 2007)
New Revision: 13541
Modified:
labs/jbossrules/trunk/drools-eclipse/drools-eclipse-plugin/src/main/java/org/drools/eclipse/rulebuilder/wizards/NewBrlFileWizardPage.java
Log:
small corrections to wording in BRL wizard
Modified: labs/jbossrules/trunk/drools-eclipse/drools-eclipse-plugin/src/main/java/org/drools/eclipse/rulebuilder/wizards/NewBrlFileWizardPage.java
===================================================================
--- labs/jbossrules/trunk/drools-eclipse/drools-eclipse-plugin/src/main/java/org/drools/eclipse/rulebuilder/wizards/NewBrlFileWizardPage.java 2007-07-16 05:24:23 UTC (rev 13540)
+++ labs/jbossrules/trunk/drools-eclipse/drools-eclipse-plugin/src/main/java/org/drools/eclipse/rulebuilder/wizards/NewBrlFileWizardPage.java 2007-07-16 05:41:12 UTC (rev 13541)
@@ -41,8 +41,8 @@
*/
public NewBrlFileWizardPage(ISelection selection) {
super( "wizardPage" );
- setTitle( "RuleBuilder Editor File" );
- setDescription( "This wizard creates a new file with *.brl extension that can be opened by a multi-page editor." );
+ setTitle( "Create new BRL rule" );
+ setDescription( "This wizard creates a new file with *.brl extension that will be opened by the guided editor." );
this.selection = selection;
}
@@ -124,7 +124,7 @@
ContainerSelectionDialog dialog = new ContainerSelectionDialog( getShell(),
ResourcesPlugin.getWorkspace().getRoot(),
false,
- "Select new file container" );
+ "Select folder (package) for rule" );
if ( dialog.open() == Window.OK ) {
Object[] result = dialog.getResult();
if ( result.length == 1 ) {
@@ -142,11 +142,11 @@
String fileName = getFileName();
if ( getContainerName().length() == 0 ) {
- updateStatus( "File container must be specified" );
+ updateStatus( "Folder must be specified" );
return;
}
if ( container == null || (container.getType() & (IResource.PROJECT | IResource.FOLDER)) == 0 ) {
- updateStatus( "File container must exist" );
+ updateStatus( "Folder must exist" );
return;
}
if ( !container.isAccessible() ) {
More information about the jboss-svn-commits
mailing list