mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-03 07:05:24 +02:00
[186134] [api] Mark Terminal API as provisional Fixed some accidental changes of strings
This commit is contained in:
parent
10d919453e
commit
af8965d1f1
7 changed files with 10 additions and 12 deletions
|
@ -20,7 +20,7 @@ import org.osgi.framework.BundleContext;
|
|||
public class Activator extends AbstractUIPlugin {
|
||||
|
||||
// The plug-in ID
|
||||
public static final String PLUGIN_ID = "org.eclipse.tm.internal.terminal.provisional.api.serial"; //$NON-NLS-1$
|
||||
public static final String PLUGIN_ID = "org.eclipse.tm.terminal.serial.serial"; //$NON-NLS-1$
|
||||
|
||||
// The shared instance
|
||||
private static Activator plugin;
|
||||
|
|
|
@ -24,7 +24,7 @@ import org.osgi.util.tracker.ServiceTracker;
|
|||
*/
|
||||
public class Activator extends Plugin {
|
||||
|
||||
public static final String PLUGIN_ID = "org.eclipse.tm.internal.terminal.provisional.api.ssh"; //$NON-NLS-1$
|
||||
public static final String PLUGIN_ID = "org.eclipse.tm.terminal.ssh"; //$NON-NLS-1$
|
||||
private static Activator plugin;
|
||||
|
||||
// ServiceTracker for IJschService
|
||||
|
|
|
@ -149,7 +149,7 @@ public class TerminalView extends ViewPart implements ITerminalView, ITerminalLi
|
|||
// millisecond.
|
||||
|
||||
getSite().getPage().showView(
|
||||
"org.eclipse.tm.internal.terminal.provisional.api.view.TerminalView",//$NON-NLS-1$
|
||||
"org.eclipse.tm.terminal.view.TerminalView",//$NON-NLS-1$
|
||||
"SecondaryTerminal" + System.currentTimeMillis(), //$NON-NLS-1$
|
||||
IWorkbenchPage.VIEW_ACTIVATE);
|
||||
} catch (PartInitException ex) {
|
||||
|
|
|
@ -29,8 +29,6 @@ import org.eclipse.ui.plugin.AbstractUIPlugin;
|
|||
|
||||
public class TerminalViewPlugin extends AbstractUIPlugin {
|
||||
protected static TerminalViewPlugin fDefault;
|
||||
public static final String PLUGIN_HOME = "org.eclipse.tm.internal.terminal.provisional.api"; //$NON-NLS-1$
|
||||
public static final String HELP_VIEW = PLUGIN_HOME + ".terminal_view"; //$NON-NLS-1$
|
||||
|
||||
/**
|
||||
* The constructor.
|
||||
|
|
|
@ -559,7 +559,7 @@ public class TerminalControl implements ITerminalControlForText, ITerminalContro
|
|||
IContextService contextService = (IContextService) PlatformUI
|
||||
.getWorkbench().getAdapter(IContextService.class);
|
||||
contextActivation = contextService
|
||||
.activateContext("org.eclipse.tm.internal.terminal.provisional.api.TerminalContext"); //$NON-NLS-1$
|
||||
.activateContext("org.eclipse.tm.terminal.TerminalContext"); //$NON-NLS-1$
|
||||
}
|
||||
|
||||
public void focusLost(FocusEvent event) {
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.eclipse.ui.plugin.AbstractUIPlugin;
|
|||
|
||||
public class TerminalPlugin extends AbstractUIPlugin {
|
||||
protected static TerminalPlugin fDefault;
|
||||
public static final String PLUGIN_ID = "org.eclipse.tm.internal.terminal.provisional.api"; //$NON-NLS-1$
|
||||
public static final String PLUGIN_ID = "org.eclipse.tm.terminal"; //$NON-NLS-1$
|
||||
public static final String HELP_VIEW = PLUGIN_ID + ".terminal_view"; //$NON-NLS-1$
|
||||
|
||||
/**
|
||||
|
|
|
@ -37,11 +37,11 @@ import java.io.PrintStream;
|
|||
* </p>
|
||||
*/
|
||||
public final class Logger {
|
||||
public static final String TRACE_DEBUG_LOG = "org.eclipse.tm.internal.terminal.provisional.api/debug/log"; //$NON-NLS-1$
|
||||
public static final String TRACE_DEBUG_LOG_ERROR = "org.eclipse.tm.internal.terminal.provisional.api/debug/log/error"; //$NON-NLS-1$
|
||||
public static final String TRACE_DEBUG_LOG_INFO = "org.eclipse.tm.internal.terminal.provisional.api/debug/log/info"; //$NON-NLS-1$
|
||||
public static final String TRACE_DEBUG_LOG_CHAR = "org.eclipse.tm.internal.terminal.provisional.api/debug/log/char"; //$NON-NLS-1$
|
||||
public static final String TRACE_DEBUG_LOG_BUFFER_SIZE = "org.eclipse.tm.internal.terminal.provisional.api/debug/log/buffer/size"; //$NON-NLS-1$
|
||||
public static final String TRACE_DEBUG_LOG = "org.eclipse.tm.terminal/debug/log"; //$NON-NLS-1$
|
||||
public static final String TRACE_DEBUG_LOG_ERROR = "org.eclipse.tm.terminal/debug/log/error"; //$NON-NLS-1$
|
||||
public static final String TRACE_DEBUG_LOG_INFO = "org.eclipse.tm.terminal/debug/log/info"; //$NON-NLS-1$
|
||||
public static final String TRACE_DEBUG_LOG_CHAR = "org.eclipse.tm.terminal/debug/log/char"; //$NON-NLS-1$
|
||||
public static final String TRACE_DEBUG_LOG_BUFFER_SIZE = "org.eclipse.tm.terminal/debug/log/buffer/size"; //$NON-NLS-1$
|
||||
|
||||
private static PrintStream logStream;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue