From: <mwl...@us...> - 2009-07-30 14:49:08
|
Revision: 906 http://cishell.svn.sourceforge.net/cishell/?rev=906&view=rev Author: mwlinnem Date: 2009-07-30 14:48:59 +0000 (Thu, 30 Jul 2009) Log Message: ----------- Changing the default bundle name to agree with the default symbolic name (I believe this is our convention, for bundles with only one algorithm). Modified Paths: -------------- trunk/templates/org.cishell.templates.wizards/src/org/cishell/templates/wizards/java/NewJavaAlgorithmTemplate.java Modified: trunk/templates/org.cishell.templates.wizards/src/org/cishell/templates/wizards/java/NewJavaAlgorithmTemplate.java =================================================================== --- trunk/templates/org.cishell.templates.wizards/src/org/cishell/templates/wizards/java/NewJavaAlgorithmTemplate.java 2009-07-29 21:33:47 UTC (rev 905) +++ trunk/templates/org.cishell.templates.wizards/src/org/cishell/templates/wizards/java/NewJavaAlgorithmTemplate.java 2009-07-30 14:48:59 UTC (rev 906) @@ -42,7 +42,7 @@ setPageCount(5); //this should go on page 0 addOption("bundleName", "Bundle Name", "My Algorithm Bundle", 1).setRequired(true); - addOption("bundleSymbolicName","Bundle Symbolic Name", "org.my.bundle.name", 1).setRequired(true); + addOption("bundleSymbolicName","Bundle Symbolic Name", "org.my.algorithm", 1).setRequired(true); addOption("bundleVersion", "Bundle Version", "0.0.1", 1).setRequired(true); addOption("algName", "Algorithm Name", "My Algorithm", 2).setRequired(true); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |