From: <bh...@us...> - 2008-03-25 19:40:25
|
Revision: 709 http://cishell.svn.sourceforge.net/cishell/?rev=709&view=rev Author: bh2 Date: 2008-03-25 12:38:29 -0700 (Tue, 25 Mar 2008) Log Message: ----------- made template algorithm's member variables private and tidied up the manifest Modified Paths: -------------- trunk/templates/org.cishell.templates.wizards/META-INF/MANIFEST.MF trunk/templates/org.cishell.templates.wizards/templates_3.0/java_algorithm/java/$algClass$.java Modified: trunk/templates/org.cishell.templates.wizards/META-INF/MANIFEST.MF =================================================================== --- trunk/templates/org.cishell.templates.wizards/META-INF/MANIFEST.MF 2008-03-25 19:32:53 UTC (rev 708) +++ trunk/templates/org.cishell.templates.wizards/META-INF/MANIFEST.MF 2008-03-25 19:38:29 UTC (rev 709) @@ -2,9 +2,8 @@ Bundle-ManifestVersion: 2 Bundle-Name: CIShell Integration Wizards Bundle-SymbolicName: org.cishell.templates.wizards;singleton:=true -Bundle-Version: 0.9.5 +Bundle-Version: 1.0.0 Bundle-Activator: org.cishell.templates.wizards.Activator -Bundle-Localization: plugin Require-Bundle: org.eclipse.ui;bundle-version="3.2.0", org.eclipse.ui.ide;bundle-version="3.2.0", org.eclipse.core.resources;bundle-version="3.2.0", @@ -17,5 +16,5 @@ org.eclipse.jdt.ui;bundle-version="3.2.0", org.eclipse.jdt.core;bundle-version="3.2.0", org.eclipse.jdt.launching;bundle-version="3.2.0" -Eclipse-LazyStart: true +Bundle-ActivationPolicy: lazy Import-Package: org.osgi.service.metatype;version="1.1.0" Modified: trunk/templates/org.cishell.templates.wizards/templates_3.0/java_algorithm/java/$algClass$.java =================================================================== --- trunk/templates/org.cishell.templates.wizards/templates_3.0/java_algorithm/java/$algClass$.java 2008-03-25 19:32:53 UTC (rev 708) +++ trunk/templates/org.cishell.templates.wizards/templates_3.0/java_algorithm/java/$algClass$.java 2008-03-25 19:38:29 UTC (rev 709) @@ -8,9 +8,9 @@ import org.cishell.framework.data.Data; public class $algClass$ implements Algorithm { - Data[] data; - Dictionary parameters; - CIShellContext context; + private Data[] data; + private Dictionary parameters; + private CIShellContext context; public $algClass$(Data[] data, Dictionary parameters, CIShellContext context) { this.data = data; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |