Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorustieber2011-07-05 09:45:07 +0000
committerustieber2011-07-05 09:45:07 +0000
commitf353eb3b62df7d462a6e4142905990f847b539e2 (patch)
tree9d947a3428ad5ea6e080df78ab746a700721375d /target_explorer
parentb4f268daab673dd002da5b1eb6e5b6477210c4a6 (diff)
downloadorg.eclipse.tcf-f353eb3b62df7d462a6e4142905990f847b539e2.tar.gz
org.eclipse.tcf-f353eb3b62df7d462a6e4142905990f847b539e2.tar.xz
org.eclipse.tcf-f353eb3b62df7d462a6e4142905990f847b539e2.zip
Target Explorer: Fix: Undesired dependency to o.e.core.resources and uprev minimum required target platform to Eclipse 3.7.0
Diffstat (limited to 'target_explorer')
-rw-r--r--target_explorer/docs/team/How-to-setup-the-development-environment.txt6
-rw-r--r--target_explorer/plugins/org.eclipse.tm.te.core.statushandler/META-INF/MANIFEST.MF4
-rw-r--r--target_explorer/plugins/org.eclipse.tm.te.core/META-INF/MANIFEST.MF4
-rw-r--r--target_explorer/plugins/org.eclipse.tm.te.tcf.core/META-INF/MANIFEST.MF2
-rw-r--r--target_explorer/plugins/org.eclipse.tm.te.tcf.filesystem/META-INF/MANIFEST.MF15
-rw-r--r--target_explorer/plugins/org.eclipse.tm.te.tcf.filesystem/src/org/eclipse/tm/te/tcf/filesystem/internal/handlers/CacheManager.java44
-rw-r--r--target_explorer/plugins/org.eclipse.tm.te.tcf.filesystem/src/org/eclipse/tm/te/tcf/filesystem/internal/handlers/OpenFileHandler.java26
-rw-r--r--target_explorer/plugins/org.eclipse.tm.te.tcf.locator/META-INF/MANIFEST.MF4
-rw-r--r--target_explorer/plugins/org.eclipse.tm.te.tcf.log.core/META-INF/MANIFEST.MF2
-rw-r--r--target_explorer/plugins/org.eclipse.tm.te.tcf.ui/META-INF/MANIFEST.MF8
-rw-r--r--target_explorer/plugins/org.eclipse.tm.te.ui.views/META-INF/MANIFEST.MF10
-rw-r--r--target_explorer/plugins/org.eclipse.tm.te.ui/META-INF/MANIFEST.MF10
12 files changed, 66 insertions, 69 deletions
diff --git a/target_explorer/docs/team/How-to-setup-the-development-environment.txt b/target_explorer/docs/team/How-to-setup-the-development-environment.txt
index 93ff54c80..7c5afc95d 100644
--- a/target_explorer/docs/team/How-to-setup-the-development-environment.txt
+++ b/target_explorer/docs/team/How-to-setup-the-development-environment.txt
@@ -2,16 +2,16 @@ How to setup a Target Explorer development environment
======================================================
1. Download and extract the Eclipse SDK environment
- - Download the Eclipse Classic 3.6.2 SDK package from http://www.eclipse.org/downloads
+ - Download the Eclipse Classic 3.7.0 SDK package from http://www.eclipse.org/downloads
- Extract the downloaded archive
Note: Once available, you can use newer versions of the Eclipse SDK package as development
-tools base. The Target Explorer build target platform has to be Eclipse 3.6.2.
+tools base. The Target Explorer build target platform has to be Eclipse 3.7.0.
2. Add the Subversion team provider and the C/C++ tooling
- Launch Eclipse
- Open the "Install" dialog via "Help > Install New Software ..."
- - Select the Eclipse 3.6.2 release site (http://download.eclipse.org/releases/helios).
+ - Select the Eclipse 3.7.0 release site (http://download.eclipse.org/releases/indigo).
If not in the list, add it.
- Choose the Subversive team provider (Collaboration > Subversive SVN Team Provider)
- Choose the C/C++ tooling (Programming Languages > C/C++ Development Tools)
diff --git a/target_explorer/plugins/org.eclipse.tm.te.core.statushandler/META-INF/MANIFEST.MF b/target_explorer/plugins/org.eclipse.tm.te.core.statushandler/META-INF/MANIFEST.MF
index 37bed1aae..6cfdf857b 100644
--- a/target_explorer/plugins/org.eclipse.tm.te.core.statushandler/META-INF/MANIFEST.MF
+++ b/target_explorer/plugins/org.eclipse.tm.te.core.statushandler/META-INF/MANIFEST.MF
@@ -5,8 +5,8 @@ Bundle-SymbolicName: org.eclipse.tm.te.core.statushandler;singleton:=true
Bundle-Version: 1.0.0.qualifier
Bundle-Activator: org.eclipse.tm.te.core.statushandler.activator.CoreBundleActivator
Bundle-Vendor: %providerName
-Require-Bundle: org.eclipse.core.runtime;bundle-version="3.6.0",
- org.eclipse.core.expressions;bundle-version="3.4.200",
+Require-Bundle: org.eclipse.core.runtime;bundle-version="3.7.0",
+ org.eclipse.core.expressions;bundle-version="3.4.300",
org.eclipse.tm.te.core;bundle-version="1.0.0"
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-ActivationPolicy: lazy
diff --git a/target_explorer/plugins/org.eclipse.tm.te.core/META-INF/MANIFEST.MF b/target_explorer/plugins/org.eclipse.tm.te.core/META-INF/MANIFEST.MF
index 1a3809e5d..b4810ba5f 100644
--- a/target_explorer/plugins/org.eclipse.tm.te.core/META-INF/MANIFEST.MF
+++ b/target_explorer/plugins/org.eclipse.tm.te.core/META-INF/MANIFEST.MF
@@ -5,8 +5,8 @@ Bundle-SymbolicName: org.eclipse.tm.te.core;singleton:=true
Bundle-Version: 1.0.0.qualifier
Bundle-Activator: org.eclipse.tm.te.core.activator.CoreBundleActivator
Bundle-Vendor: %providerName
-Require-Bundle: org.eclipse.core.runtime;bundle-version="3.6.0",
- org.eclipse.core.expressions;bundle-version="3.4.200"
+Require-Bundle: org.eclipse.core.runtime;bundle-version="3.7.0",
+ org.eclipse.core.expressions;bundle-version="3.4.300"
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-ActivationPolicy: lazy
Bundle-Localization: plugin
diff --git a/target_explorer/plugins/org.eclipse.tm.te.tcf.core/META-INF/MANIFEST.MF b/target_explorer/plugins/org.eclipse.tm.te.tcf.core/META-INF/MANIFEST.MF
index 05e174f1a..16a9ee84c 100644
--- a/target_explorer/plugins/org.eclipse.tm.te.tcf.core/META-INF/MANIFEST.MF
+++ b/target_explorer/plugins/org.eclipse.tm.te.tcf.core/META-INF/MANIFEST.MF
@@ -5,7 +5,7 @@ Bundle-SymbolicName: org.eclipse.tm.te.tcf.core;singleton:=true
Bundle-Version: 1.0.0.qualifier
Bundle-Activator: org.eclipse.tm.te.tcf.core.activator.CoreBundleActivator
Bundle-Vendor: %providerName
-Require-Bundle: org.eclipse.core.runtime;bundle-version="3.6.0",
+Require-Bundle: org.eclipse.core.runtime;bundle-version="3.7.0",
org.eclipse.tm.tcf.core;bundle-version="0.4.0"
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-ActivationPolicy: lazy
diff --git a/target_explorer/plugins/org.eclipse.tm.te.tcf.filesystem/META-INF/MANIFEST.MF b/target_explorer/plugins/org.eclipse.tm.te.tcf.filesystem/META-INF/MANIFEST.MF
index 1a0006bd3..77bfc9269 100644
--- a/target_explorer/plugins/org.eclipse.tm.te.tcf.filesystem/META-INF/MANIFEST.MF
+++ b/target_explorer/plugins/org.eclipse.tm.te.tcf.filesystem/META-INF/MANIFEST.MF
@@ -5,19 +5,18 @@ Bundle-SymbolicName: org.eclipse.tm.te.tcf.filesystem;singleton:=true
Bundle-Version: 1.0.0.qualifier
Bundle-Activator: org.eclipse.tm.te.tcf.filesystem.activator.UIPlugin
Bundle-Vendor: %providerName
-Require-Bundle: org.eclipse.core.runtime;bundle-version="3.6.0",
- org.eclipse.ui;bundle-version="3.6.2",
- org.eclipse.ui.forms;bundle-version="3.5.2",
- org.eclipse.ui.navigator;bundle-version="3.5.0",
+Require-Bundle: org.eclipse.core.runtime;bundle-version="3.7.0",
+ org.eclipse.ui;bundle-version="3.7.0",
+ org.eclipse.ui.forms;bundle-version="3.5.100",
+ org.eclipse.ui.navigator;bundle-version="3.5.100",
org.eclipse.tm.tcf.core;bundle-version="0.4.0",
org.eclipse.tm.te.tcf.core;bundle-version="1.0.0",
org.eclipse.tm.te.ui;bundle-version="1.0.0",
org.eclipse.tm.te.ui.views;bundle-version="1.0.0",
org.eclipse.tm.te.tcf.locator;bundle-version="1.0.0",
- org.eclipse.core.filesystem;bundle-version="1.3.1",
- org.eclipse.core.resources;bundle-version="3.6.1",
- org.eclipse.ui.ide;bundle-version="3.6.2",
- org.eclipse.core.expressions;bundle-version="3.4.200"
+ org.eclipse.core.filesystem;bundle-version="1.3.100",
+ org.eclipse.ui.ide;bundle-version="3.7.0",
+ org.eclipse.core.expressions;bundle-version="3.4.300"
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-ActivationPolicy: lazy
Bundle-Localization: plugin
diff --git a/target_explorer/plugins/org.eclipse.tm.te.tcf.filesystem/src/org/eclipse/tm/te/tcf/filesystem/internal/handlers/CacheManager.java b/target_explorer/plugins/org.eclipse.tm.te.tcf.filesystem/src/org/eclipse/tm/te/tcf/filesystem/internal/handlers/CacheManager.java
index 5b0bac19f..1534a4d51 100644
--- a/target_explorer/plugins/org.eclipse.tm.te.tcf.filesystem/src/org/eclipse/tm/te/tcf/filesystem/internal/handlers/CacheManager.java
+++ b/target_explorer/plugins/org.eclipse.tm.te.tcf.filesystem/src/org/eclipse/tm/te/tcf/filesystem/internal/handlers/CacheManager.java
@@ -19,14 +19,14 @@ import java.lang.reflect.InvocationTargetException;
import java.net.URL;
import java.text.DecimalFormat;
-import org.eclipse.core.resources.IWorkspaceRoot;
-import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.IProgressMonitor;
+import org.eclipse.core.runtime.Path;
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.jface.operation.IRunnableWithProgress;
import org.eclipse.osgi.util.NLS;
import org.eclipse.swt.widgets.Shell;
+import org.eclipse.tm.te.tcf.filesystem.activator.UIPlugin;
import org.eclipse.tm.te.tcf.filesystem.internal.nls.Messages;
import org.eclipse.tm.te.tcf.filesystem.model.FSTreeNode;
@@ -36,9 +36,7 @@ import org.eclipse.tm.te.tcf.filesystem.model.FSTreeNode;
*/
public class CacheManager {
private static final String WS_AGENT_DIR_PREFIX = "agent_"; //$NON-NLS-1$
- private static final String WS_METADATA_DIR = ".metadata"; //$NON-NLS-1$
- private static final String WS_PLUGINS_DIR = ".plugins"; //$NON-NLS-1$
- private static final String WS_PLUGIN_FS_DIR = "org.eclipse.tm.te.tcf.filesystem"; //$NON-NLS-1$
+
// The singleton instance.
private static CacheManager instance;
// The formatter used to format the size displayed while downloading.
@@ -59,33 +57,41 @@ public class CacheManager {
}
/**
- * Get the local path of a node's cached file. Current implementation is a
- * file under a sub directory of the ".metadata" folder. The path is:
- * <workspace>/.metadata/.plugins/org.eclipse.tm.te.tcf.filesytem/
- * agent_<hashcode_of_peerId>/remote/path/to/the/file...
+ * Get the local path of a node's cached file.
+ * <p>
+ * The preferred location is within the plugin's state location, in
+ * example <code>&lt;state location&gt;agent_<hashcode_of_peerId>/remote/path/to/the/file...</code>.
+ * <p>
+ * If the plugin is loaded in a RCP workspace-less environment, the
+ * fallback strategy is to use the users home directory.
*
* @param node
* The file/folder node.
* @return The local path of the node's cached file.
*/
public IPath getCachePath(FSTreeNode node) {
- IWorkspaceRoot root = ResourcesPlugin.getWorkspace().getRoot();
- IPath wsPath = root.getLocation();
- IPath metadata = wsPath.append(WS_METADATA_DIR);
- IPath plugins = metadata.append(WS_PLUGINS_DIR);
- IPath fsDir = plugins.append(WS_PLUGIN_FS_DIR);
- File fsDirFile = fsDir.toFile();
- if (!fsDirFile.exists()) {
- fsDirFile.mkdir();
- }
+ File location;
+ try {
+ location = UIPlugin.getDefault().getStateLocation().toFile();
+ }
+ catch (IllegalStateException e) {
+ // An RCP workspace-less environment (-data @none)
+ location = new File(System.getProperty("user.home"), ".tcf"); //$NON-NLS-1$ //$NON-NLS-2$
+ location = new File(location, "fs"); //$NON-NLS-1$
+ }
+
+ // Create the location if it not exist
+ if (!location.exists()) location.mkdir();
+
String agentId = node.peerNode.getPeer().getID();
// Use Math.abs to avoid negative hash value.
String agent = WS_AGENT_DIR_PREFIX + Math.abs(agentId.hashCode());
- IPath agentDir = fsDir.append(agent);
+ IPath agentDir = new Path(location.getAbsolutePath()).append(agent);
File agentDirFile = agentDir.toFile();
if (!agentDirFile.exists()) {
agentDirFile.mkdir();
}
+
return appendNodePath(agentDir, node);
}
diff --git a/target_explorer/plugins/org.eclipse.tm.te.tcf.filesystem/src/org/eclipse/tm/te/tcf/filesystem/internal/handlers/OpenFileHandler.java b/target_explorer/plugins/org.eclipse.tm.te.tcf.filesystem/src/org/eclipse/tm/te/tcf/filesystem/internal/handlers/OpenFileHandler.java
index ee0718580..9a63fb47e 100644
--- a/target_explorer/plugins/org.eclipse.tm.te.tcf.filesystem/src/org/eclipse/tm/te/tcf/filesystem/internal/handlers/OpenFileHandler.java
+++ b/target_explorer/plugins/org.eclipse.tm.te.tcf.filesystem/src/org/eclipse/tm/te/tcf/filesystem/internal/handlers/OpenFileHandler.java
@@ -31,23 +31,18 @@ import org.eclipse.ui.ide.IDE;
*/
public class OpenFileHandler extends AbstractHandler {
- /*
- * (non-Javadoc)
- *
- * @see
- * org.eclipse.core.commands.AbstractHandler#execute(org.eclipse.core.commands
- * .ExecutionEvent)
+ /* (non-Javadoc)
+ *
+ * @see org.eclipse.core.commands.AbstractHandler#execute(org.eclipse.core.commands.ExecutionEvent)
*/
public Object execute(ExecutionEvent event) throws ExecutionException {
- IStructuredSelection selection = (IStructuredSelection) HandlerUtil
- .getActiveMenuSelectionChecked(event);
+ IStructuredSelection selection = (IStructuredSelection) HandlerUtil.getActiveMenuSelectionChecked(event);
final FSTreeNode node = (FSTreeNode) selection.getFirstElement();
IWorkbenchPage page = HandlerUtil.getActiveSite(event).getPage();
if (ContentTypeHelper.getInstance().isBinaryFile(node)) {
// If the file is a binary file.
Shell parent = HandlerUtil.getActiveShell(event);
- MessageDialog.openWarning(parent,
- Messages.OpenFileHandler_Warning, Messages.OpenFileHandler_OpeningBinaryNotSupported);
+ MessageDialog.openWarning(parent, Messages.OpenFileHandler_Warning, Messages.OpenFileHandler_OpeningBinaryNotSupported);
} else {
// Open the file node.
openFile(node, page);
@@ -59,7 +54,7 @@ public class OpenFileHandler extends AbstractHandler {
* Open the file node in an editor of the specified workbench page. If the
* local cache file of the node is stale, then download it. Then open its
* local cache file.
- *
+ *
* @param node
* The file node to be opened.
* @param page
@@ -69,11 +64,8 @@ public class OpenFileHandler extends AbstractHandler {
if (CacheManager.getInstance().isCacheStale(node)) {
// If the file node's local cache is already stale, download it.
Shell parent = page.getWorkbenchWindow().getShell();
- boolean successful = CacheManager.getInstance().download(node,
- parent);
- if (successful) {
- openEditor(page, node);
- }
+ boolean successful = CacheManager.getInstance().download(node, parent);
+ if (successful) openEditor(page, node);
} else {
openEditor(page, node);
}
@@ -81,7 +73,7 @@ public class OpenFileHandler extends AbstractHandler {
/**
* Open the editor to display the file node in the UI thread.
- *
+ *
* @param page
* The workbench page in which the editor is opened.
* @param node
diff --git a/target_explorer/plugins/org.eclipse.tm.te.tcf.locator/META-INF/MANIFEST.MF b/target_explorer/plugins/org.eclipse.tm.te.tcf.locator/META-INF/MANIFEST.MF
index 50991b839..481dfa3d1 100644
--- a/target_explorer/plugins/org.eclipse.tm.te.tcf.locator/META-INF/MANIFEST.MF
+++ b/target_explorer/plugins/org.eclipse.tm.te.tcf.locator/META-INF/MANIFEST.MF
@@ -5,8 +5,8 @@ Bundle-SymbolicName: org.eclipse.tm.te.tcf.locator; singleton:=true
Bundle-Version: 1.0.0.qualifier
Bundle-Activator: org.eclipse.tm.te.tcf.locator.activator.CoreBundleActivator
Bundle-Vendor: %providerName
-Require-Bundle: org.eclipse.core.runtime;bundle-version="3.6.0",
- org.eclipse.core.expressions;bundle-version="3.4.200",
+Require-Bundle: org.eclipse.core.runtime;bundle-version="3.7.0",
+ org.eclipse.core.expressions;bundle-version="3.4.300",
org.eclipse.tm.tcf.core;bundle-version="0.4.0",
org.eclipse.tm.te.tcf.core;bundle-version="1.0.0",
org.eclipse.tm.te.core;bundle-version="1.0.0"
diff --git a/target_explorer/plugins/org.eclipse.tm.te.tcf.log.core/META-INF/MANIFEST.MF b/target_explorer/plugins/org.eclipse.tm.te.tcf.log.core/META-INF/MANIFEST.MF
index ea9a38afe..074092c41 100644
--- a/target_explorer/plugins/org.eclipse.tm.te.tcf.log.core/META-INF/MANIFEST.MF
+++ b/target_explorer/plugins/org.eclipse.tm.te.tcf.log.core/META-INF/MANIFEST.MF
@@ -5,7 +5,7 @@ Bundle-SymbolicName: org.eclipse.tm.te.tcf.log.core;singleton:=true
Bundle-Version: 1.0.0.qualifier
Bundle-Activator: org.eclipse.tm.te.tcf.log.core.activator.CoreBundleActivator
Bundle-Vendor: %providerName
-Require-Bundle: org.eclipse.core.runtime;bundle-version="3.6.0",
+Require-Bundle: org.eclipse.core.runtime;bundle-version="3.7.0",
org.eclipse.tm.te.core;bundle-version="1.0.0",
org.eclipse.tm.tcf.core;bundle-version="0.4.0",
org.eclipse.tm.te.tcf.core;bundle-version="1.0.0"
diff --git a/target_explorer/plugins/org.eclipse.tm.te.tcf.ui/META-INF/MANIFEST.MF b/target_explorer/plugins/org.eclipse.tm.te.tcf.ui/META-INF/MANIFEST.MF
index 2bd21e015..ba3a2c5e3 100644
--- a/target_explorer/plugins/org.eclipse.tm.te.tcf.ui/META-INF/MANIFEST.MF
+++ b/target_explorer/plugins/org.eclipse.tm.te.tcf.ui/META-INF/MANIFEST.MF
@@ -5,10 +5,10 @@ Bundle-SymbolicName: org.eclipse.tm.te.tcf.ui;singleton:=true
Bundle-Version: 1.0.0.qualifier
Bundle-Activator: org.eclipse.tm.te.tcf.ui.activator.UIPlugin
Bundle-Vendor: %providerName
-Require-Bundle: org.eclipse.core.runtime;bundle-version="3.6.0",
- org.eclipse.ui;bundle-version="3.6.2",
- org.eclipse.ui.forms;bundle-version="3.5.2",
- org.eclipse.ui.navigator;bundle-version="3.5.0",
+Require-Bundle: org.eclipse.core.runtime;bundle-version="3.7.0",
+ org.eclipse.ui;bundle-version="3.7.0",
+ org.eclipse.ui.forms;bundle-version="3.5.100",
+ org.eclipse.ui.navigator;bundle-version="3.5.100",
org.eclipse.tm.tcf.core;bundle-version="0.4.0",
org.eclipse.tm.te.ui;bundle-version="1.0.0",
org.eclipse.tm.te.ui.views;bundle-version="1.0.0",
diff --git a/target_explorer/plugins/org.eclipse.tm.te.ui.views/META-INF/MANIFEST.MF b/target_explorer/plugins/org.eclipse.tm.te.ui.views/META-INF/MANIFEST.MF
index c43f81452..57fd096a4 100644
--- a/target_explorer/plugins/org.eclipse.tm.te.ui.views/META-INF/MANIFEST.MF
+++ b/target_explorer/plugins/org.eclipse.tm.te.ui.views/META-INF/MANIFEST.MF
@@ -5,11 +5,11 @@ Bundle-SymbolicName: org.eclipse.tm.te.ui.views;singleton:=true
Bundle-Version: 1.0.0.qualifier
Bundle-Activator: org.eclipse.tm.te.ui.views.activator.UIPlugin
Bundle-Vendor: %providerName
-Require-Bundle: org.eclipse.core.runtime;bundle-version="3.6.0",
- org.eclipse.core.expressions;bundle-version="3.4.200",
- org.eclipse.ui;bundle-version="3.6.2",
- org.eclipse.ui.forms;bundle-version="3.5.2",
- org.eclipse.ui.navigator;bundle-version="3.5.0",
+Require-Bundle: org.eclipse.core.runtime;bundle-version="3.7.0",
+ org.eclipse.core.expressions;bundle-version="3.4.300",
+ org.eclipse.ui;bundle-version="3.7.0",
+ org.eclipse.ui.forms;bundle-version="3.5.100",
+ org.eclipse.ui.navigator;bundle-version="3.5.100",
org.eclipse.tm.te.core;bundle-version="1.0.0",
org.eclipse.tm.te.ui;bundle-version="1.0.0"
Bundle-RequiredExecutionEnvironment: J2SE-1.5
diff --git a/target_explorer/plugins/org.eclipse.tm.te.ui/META-INF/MANIFEST.MF b/target_explorer/plugins/org.eclipse.tm.te.ui/META-INF/MANIFEST.MF
index 60b620773..fa17effd8 100644
--- a/target_explorer/plugins/org.eclipse.tm.te.ui/META-INF/MANIFEST.MF
+++ b/target_explorer/plugins/org.eclipse.tm.te.ui/META-INF/MANIFEST.MF
@@ -5,11 +5,11 @@ Bundle-SymbolicName: org.eclipse.tm.te.ui;singleton:=true
Bundle-Version: 1.0.0.qualifier
Bundle-Activator: org.eclipse.tm.te.ui.activator.UIPlugin
Bundle-Vendor: %providerName
-Require-Bundle: org.eclipse.core.runtime;bundle-version="3.6.0",
- org.eclipse.core.expressions;bundle-version="3.4.200",
- org.eclipse.ui;bundle-version="3.6.2",
- org.eclipse.ui.forms;bundle-version="3.5.2",
- org.eclipse.help;bundle-version="3.5.0",
+Require-Bundle: org.eclipse.core.runtime;bundle-version="3.7.0",
+ org.eclipse.core.expressions;bundle-version="3.4.300",
+ org.eclipse.ui;bundle-version="3.7.0",
+ org.eclipse.ui.forms;bundle-version="3.5.100",
+ org.eclipse.help;bundle-version="3.5.100",
org.eclipse.tm.te.core;bundle-version="1.0.0"
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-ActivationPolicy: lazy

Back to the top