From: <bh...@us...> - 2006-09-18 21:16:04
|
Revision: 198 http://svn.sourceforge.net/cishell/?rev=198&view=rev Author: bh2 Date: 2006-09-18 14:15:52 -0700 (Mon, 18 Sep 2006) Log Message: ----------- fixed a bug with the java-based templates that didn't generate parameter descriptions that were entered Modified Paths: -------------- trunk/templates/org.cishell.templates.wizards/META-INF/MANIFEST.MF trunk/templates/org.cishell.templates.wizards/src/org/cishell/templates/wizards/pages/ParameterListBuilderPage.java Modified: trunk/templates/org.cishell.templates.wizards/META-INF/MANIFEST.MF =================================================================== --- trunk/templates/org.cishell.templates.wizards/META-INF/MANIFEST.MF 2006-09-15 15:42:51 UTC (rev 197) +++ trunk/templates/org.cishell.templates.wizards/META-INF/MANIFEST.MF 2006-09-18 21:15:52 UTC (rev 198) @@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: CIShell Integration Wizards Bundle-SymbolicName: org.cishell.templates.wizards;singleton:=true -Bundle-Version: 0.0.1 +Bundle-Version: 0.0.1.qualifier Bundle-Activator: org.cishell.templates.wizards.Activator Bundle-Localization: plugin Require-Bundle: org.eclipse.ui;bundle-version="3.2.0", Modified: trunk/templates/org.cishell.templates.wizards/src/org/cishell/templates/wizards/pages/ParameterListBuilderPage.java =================================================================== --- trunk/templates/org.cishell.templates.wizards/src/org/cishell/templates/wizards/pages/ParameterListBuilderPage.java 2006-09-15 15:42:51 UTC (rev 197) +++ trunk/templates/org.cishell.templates.wizards/src/org/cishell/templates/wizards/pages/ParameterListBuilderPage.java 2006-09-18 21:15:52 UTC (rev 198) @@ -57,6 +57,7 @@ output += "\t\t<AD name=\""+attrs[i].getName()+"\" "+ "id=\""+attrs[i].getID()+"\" "+ "type=\""+getTypeString(attrs[i])+"\" "+ + "description=\""+attrs[i].getDescription()+"\" "+ "default=\""+attrs[i].getDefaultValue()[0]+"\"/>\n"; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |