From: <pat...@us...> - 2009-08-20 23:50:40
|
Revision: 934 http://cishell.svn.sourceforge.net/cishell/?rev=934&view=rev Author: pataphil Date: 2009-08-20 23:50:23 +0000 (Thu, 20 Aug 2009) Log Message: ----------- * Fixed some naming and other miscellaneous typo issues. Modified Paths: -------------- trunk/templates/org.cishell.templates.wizards/src/org/cishell/templates/wizards/pagepanels/AddOutputDataPanel.java trunk/templates/org.cishell.templates.wizards/src/org/cishell/templates/wizards/staticexecutable/NewStaticExecutableAlgorithmTemplate.java trunk/templates/org.cishell.templates.wizards/src/org/cishell/templates/wizards/staticexecutable/OutputDataItemEditor.java Modified: trunk/templates/org.cishell.templates.wizards/src/org/cishell/templates/wizards/pagepanels/AddOutputDataPanel.java =================================================================== --- trunk/templates/org.cishell.templates.wizards/src/org/cishell/templates/wizards/pagepanels/AddOutputDataPanel.java 2009-08-20 17:31:49 UTC (rev 933) +++ trunk/templates/org.cishell.templates.wizards/src/org/cishell/templates/wizards/pagepanels/AddOutputDataPanel.java 2009-08-20 23:50:23 UTC (rev 934) @@ -64,7 +64,7 @@ GetOutputDataAction action = new GetOutputDataAction(); display.syncExec(action); - return action.inputDataItems; + return action.outputDataItems; } else { return new OutputDataItem[0]; } @@ -108,16 +108,16 @@ } private class GetOutputDataAction implements Runnable { - OutputDataItem[] inputDataItems; + OutputDataItem[] outputDataItems; public void run() { TableItem[] tableItems = listBuilder.getTable().getItems(); - inputDataItems = new OutputDataItem[tableItems.length]; - Map idToInputDataItemMap = delegate.getIDToOutputDataItemMap(); + outputDataItems = new OutputDataItem[tableItems.length]; + Map idToOutputDataItemMap = delegate.getIDToOutputDataItemMap(); for (int ii = 0; ii < tableItems.length; ii++) { - inputDataItems[ii] = (OutputDataItem) - idToInputDataItemMap.get(tableItems[ii].getText(0)); + outputDataItems[ii] = (OutputDataItem) + idToOutputDataItemMap.get(tableItems[ii].getText(0)); } } } Modified: trunk/templates/org.cishell.templates.wizards/src/org/cishell/templates/wizards/staticexecutable/NewStaticExecutableAlgorithmTemplate.java =================================================================== --- trunk/templates/org.cishell.templates.wizards/src/org/cishell/templates/wizards/staticexecutable/NewStaticExecutableAlgorithmTemplate.java 2009-08-20 17:31:49 UTC (rev 933) +++ trunk/templates/org.cishell.templates.wizards/src/org/cishell/templates/wizards/staticexecutable/NewStaticExecutableAlgorithmTemplate.java 2009-08-20 23:50:23 UTC (rev 934) @@ -411,7 +411,7 @@ createPage(PROJECT_BUNDLE_PROPERTIES_PAGE_NUMBER); bundlePropertiesPage.setTitle("Bundle Properties"); bundlePropertiesPage.setDescription( - "Enter the bundle name, and bundle version"); + "Enter the Bundle Name, Bundle Symbolic Name, and Bundle Version"); return bundlePropertiesPage; } @@ -432,7 +432,7 @@ WizardPage projectPropertiesPage = createPage(PROJECT_PROPERTIES_PAGE_NUMBER); projectPropertiesPage.setTitle("Project Properties"); - projectPropertiesPage.setDescription("Enter project properties"); + projectPropertiesPage.setDescription("Enter Project Properties"); return projectPropertiesPage; } @@ -440,8 +440,8 @@ private ParameterListBuilderPage createProjectParametersPage() { ParameterListBuilderPage projectParametersPage = new ParameterListBuilderPage(SETUP_PARAMETERS_PAGE_ID); - projectParametersPage.setTitle("Project Parameters"); - projectParametersPage.setDescription("Enter project parameters"); + projectParametersPage.setTitle("Algorithm Parameters"); + projectParametersPage.setDescription("Enter Project Parameters"); return projectParametersPage; } @@ -451,7 +451,7 @@ new SpecifyInAndOutDataPage(SPECIFY_IN_AND_OUT_DATA_PAGE_ID); inputAndOutputDataPage.setTitle("Input and Output Data"); inputAndOutputDataPage.setDescription( - "Enter the input and output data"); + "Enter the Input and Output Data"); return inputAndOutputDataPage; } @@ -465,7 +465,7 @@ this.templateStringOption); specifyTemplateStringPage.setTitle("Template String"); specifyTemplateStringPage.setDescription( - "Enter the template string used to execute your program"); + "Enter the Template String Used to Execute Your Program"); return specifyTemplateStringPage; } @@ -477,7 +477,7 @@ this.sourceCodeFilesOption); sourceCodeFilesPage.setTitle("Source Code Files (Optional)"); sourceCodeFilesPage.setDescription( - "Enter the source code files for your program"); + "Enter the Source Code Files for Your Program"); return sourceCodeFilesPage; } Modified: trunk/templates/org.cishell.templates.wizards/src/org/cishell/templates/wizards/staticexecutable/OutputDataItemEditor.java =================================================================== --- trunk/templates/org.cishell.templates.wizards/src/org/cishell/templates/wizards/staticexecutable/OutputDataItemEditor.java 2009-08-20 17:31:49 UTC (rev 933) +++ trunk/templates/org.cishell.templates.wizards/src/org/cishell/templates/wizards/staticexecutable/OutputDataItemEditor.java 2009-08-20 23:50:23 UTC (rev 934) @@ -47,7 +47,7 @@ this.mimeTypeText = createTextInput(panel, "Mime Type"); this.mimeTypeText.setText(this.outputDataItem.getMimeType()); - composite.getShell().setText("Input Data Item Editor"); + composite.getShell().setText("Output Data Item Editor"); return composite; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |