|
From: <bh...@us...> - 2008-03-12 14:21:23
|
Revision: 654
http://cishell.svn.sourceforge.net/cishell/?rev=654&view=rev
Author: bh2
Date: 2008-03-12 07:21:18 -0700 (Wed, 12 Mar 2008)
Log Message:
-----------
Some more updates. disabled all but the java integration wizards until the other wizards are updated to cishell 1.0.
If I get the Java integration tutorial done quickly I'll come back for the others.
Modified Paths:
--------------
branches/spec_update/org.cishell.templates.wizards/org.cishell.templates.wizards/META-INF/MANIFEST.MF
branches/spec_update/org.cishell.templates.wizards/org.cishell.templates.wizards/plugin.xml
branches/spec_update/org.cishell.templates.wizards/org.cishell.templates.wizards/src/org/cishell/templates/wizards/java/NewJavaAlgorithmWizard.java
branches/spec_update/org.cishell.templates.wizards/org.cishell.templates.wizards/templates_3.0/java_algorithm/java/$algClass$.java
Modified: branches/spec_update/org.cishell.templates.wizards/org.cishell.templates.wizards/META-INF/MANIFEST.MF
===================================================================
--- branches/spec_update/org.cishell.templates.wizards/org.cishell.templates.wizards/META-INF/MANIFEST.MF 2008-03-12 13:26:40 UTC (rev 653)
+++ branches/spec_update/org.cishell.templates.wizards/org.cishell.templates.wizards/META-INF/MANIFEST.MF 2008-03-12 14:21:18 UTC (rev 654)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: CIShell Integration Wizards
Bundle-SymbolicName: org.cishell.templates.wizards;singleton:=true
-Bundle-Version: 0.3.0
+Bundle-Version: 0.9.5
Bundle-Activator: org.cishell.templates.wizards.Activator
Bundle-Localization: plugin
Require-Bundle: org.eclipse.ui;bundle-version="3.2.0",
Modified: branches/spec_update/org.cishell.templates.wizards/org.cishell.templates.wizards/plugin.xml
===================================================================
--- branches/spec_update/org.cishell.templates.wizards/org.cishell.templates.wizards/plugin.xml 2008-03-12 13:26:40 UTC (rev 653)
+++ branches/spec_update/org.cishell.templates.wizards/org.cishell.templates.wizards/plugin.xml 2008-03-12 14:21:18 UTC (rev 654)
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<plugin>
-
<extension
point="org.eclipse.ui.newWizards">
<category
@@ -17,6 +16,7 @@
name="Java-based algorithm"
preferredPerspectives="org.eclipse.jdt.ui.JavaPerspective"
project="true"/>
+<!-- disabling until they can be updated for CIShell 1.0
<wizard
canFinishEarly="false"
category="cishell"
@@ -47,6 +47,7 @@
name="Dataset"
preferredPerspectives="org.eclipse.jdt.ui.JavaPerspective"
project="true"/>
+-->
<wizard
category="cishell"
class="org.cishell.templates.wizards.java.NewLibraryIntegrationWizard"
@@ -57,5 +58,4 @@
project="true">
</wizard>
</extension>
-
</plugin>
Modified: branches/spec_update/org.cishell.templates.wizards/org.cishell.templates.wizards/src/org/cishell/templates/wizards/java/NewJavaAlgorithmWizard.java
===================================================================
--- branches/spec_update/org.cishell.templates.wizards/org.cishell.templates.wizards/src/org/cishell/templates/wizards/java/NewJavaAlgorithmWizard.java 2008-03-12 13:26:40 UTC (rev 653)
+++ branches/spec_update/org.cishell.templates.wizards/org.cishell.templates.wizards/src/org/cishell/templates/wizards/java/NewJavaAlgorithmWizard.java 2008-03-12 14:21:18 UTC (rev 654)
@@ -134,11 +134,13 @@
"org.cishell.framework;version=\"1.0.0\"",
"org.cishell.framework.algorithm;version=\"1.0.0\"",
"org.cishell.framework.data;version=\"1.0.0\"",
+ "org.cishell.framework.userprefs;version=\"1.0.0\"",
"org.osgi.framework;version=\"1.3.0\"",
"org.osgi.service.component;version=\"1.0.0\"",
"org.osgi.service.log;version=\"1.3.0\"",
"org.osgi.service.metatype;version=\"1.1.0\"",
- "org.osgi.service.prefs;version=\"1.1.0\""
+ "org.osgi.service.prefs;version=\"1.1.0\"",
+ "org.osgi.service.cm;version=\"1.2.0\""
};
}
Modified: branches/spec_update/org.cishell.templates.wizards/org.cishell.templates.wizards/templates_3.0/java_algorithm/java/$algClass$.java
===================================================================
--- branches/spec_update/org.cishell.templates.wizards/org.cishell.templates.wizards/templates_3.0/java_algorithm/java/$algClass$.java 2008-03-12 13:26:40 UTC (rev 653)
+++ branches/spec_update/org.cishell.templates.wizards/org.cishell.templates.wizards/templates_3.0/java_algorithm/java/$algClass$.java 2008-03-12 14:21:18 UTC (rev 654)
@@ -4,6 +4,7 @@
import org.cishell.framework.CIShellContext;
import org.cishell.framework.algorithm.Algorithm;
+import org.cishell.framework.algorithm.AlgorithmExecutionException;
import org.cishell.framework.data.Data;
public class $algClass$ implements Algorithm {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|