1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-09 10:46:02 +02:00

[196454][cleanup] Required tm.terminal version for tm.terminal.view

This commit is contained in:
Martin Oberhuber 2008-07-09 14:39:55 +00:00
parent 049bd8647e
commit adc560d25e
4 changed files with 30 additions and 21 deletions

View file

@ -25,7 +25,7 @@
<requires> <requires>
<import plugin="org.eclipse.ui"/> <import plugin="org.eclipse.ui"/>
<import plugin="org.eclipse.core.runtime"/> <import plugin="org.eclipse.core.runtime"/>
<import plugin="org.eclipse.tm.terminal" version="2.0.0" match="compatible"/> <import plugin="org.eclipse.tm.terminal" version="2.0.1" match="compatible"/>
</requires> </requires>
<plugin <plugin

View file

@ -7,7 +7,7 @@ Bundle-Activator: org.eclipse.tm.internal.terminal.view.TerminalViewPlugin
Bundle-Localization: plugin Bundle-Localization: plugin
Require-Bundle: org.eclipse.ui, Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime, org.eclipse.core.runtime,
org.eclipse.tm.terminal;bundle-version="[2.0.0,3.0.0)" org.eclipse.tm.terminal;bundle-version="[2.0.1,3.0.0)"
Bundle-ActivationPolicy: lazy Bundle-ActivationPolicy: lazy
Eclipse-LazyStart: true Eclipse-LazyStart: true
Bundle-RequiredExecutionEnvironment: J2SE-1.4 Bundle-RequiredExecutionEnvironment: J2SE-1.4

View file

@ -10,10 +10,14 @@
*******************************************************************************/ *******************************************************************************/
package org.eclipse.tm.internal.terminal.provisional.api; package org.eclipse.tm.internal.terminal.provisional.api;
/** /**
* Uses an array of {@link ISettingsStore} to find a value. * Uses an array of {@link ISettingsStore} to find a value.
* * <p>
* <strong>EXPERIMENTAL</strong>. This class or interface has been added as part
* of a work in progress. There is no guarantee that this API will work or that
* it will remain the same. Please do not use this API without consulting with
* the <a href="http://www.eclipse.org/dsdp/tm/">Target Management</a> team.
* </p>
*/ */
public class LayeredSettingsStore implements ISettingsStore { public class LayeredSettingsStore implements ISettingsStore {

View file

@ -14,7 +14,12 @@ import org.eclipse.core.runtime.Preferences;
/** /**
* A preference based settings store. * A preference based settings store.
* * <p>
* <strong>EXPERIMENTAL</strong>. This class or interface has been added as part
* of a work in progress. There is no guarantee that this API will work or that
* it will remain the same. Please do not use this API without consulting with
* the <a href="http://www.eclipse.org/dsdp/tm/">Target Management</a> team.
* </p>
*/ */
public class PreferenceSettingStore implements ISettingsStore { public class PreferenceSettingStore implements ISettingsStore {
private final String fPrefix; private final String fPrefix;