mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-19 14:15:50 +02:00
[refactor] Make remotecdt "internal" and export it as x-internal
This commit is contained in:
parent
cf9a016317
commit
f8012111a3
12 changed files with 18 additions and 17 deletions
|
@ -1,3 +1,3 @@
|
|||
#Tue Sep 19 23:47:40 CEST 2006
|
||||
#Thu Mar 29 13:55:14 CEST 2007
|
||||
eclipse.preferences.version=1
|
||||
encoding//src/org/eclipse/rse/remotecdt/messages.properties=8859_1
|
||||
encoding//src/org/eclipse/rse/internal/remotecdt/messages.properties=8859_1
|
||||
|
|
|
@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
|
|||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.rse.remotecdt;singleton:=true
|
||||
Bundle-Version: 1.0.100.qualifier
|
||||
Bundle-Activator: org.eclipse.rse.remotecdt.Activator
|
||||
Bundle-Activator: org.eclipse.rse.internal.remotecdt.Activator
|
||||
Bundle-Localization: plugin
|
||||
Require-Bundle: org.eclipse.rse.ui,
|
||||
org.eclipse.rse.subsystems.shells.core,
|
||||
|
@ -24,3 +24,4 @@ Require-Bundle: org.eclipse.rse.ui,
|
|||
Eclipse-LazyStart: true
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-RequiredExecutionEnvironment: J2SE-1.4
|
||||
Export-Package: org.eclipse.rse.internal.remotecdt;x-internal:=true
|
||||
|
|
|
@ -16,7 +16,7 @@ Martin Oberhuber (Wind River) - fix 158529: Migrate docs to HTML / TOC format
|
|||
point="org.eclipse.debug.core.launchConfigurationTypes">
|
||||
<launchConfigurationType
|
||||
sourceLocatorId="org.eclipse.cdt.debug.core.sourceLocator"
|
||||
delegate="org.eclipse.rse.remotecdt.RemoteRunLaunchDelegate"
|
||||
delegate="org.eclipse.rse.internal.remotecdt.RemoteRunLaunchDelegate"
|
||||
public="true"
|
||||
sourcePathComputerId="org.eclipse.cdt.debug.core.sourcePathComputer"
|
||||
name="C/C++ Remote Application"
|
||||
|
@ -35,7 +35,7 @@ Martin Oberhuber (Wind River) - fix 158529: Migrate docs to HTML / TOC format
|
|||
<extension
|
||||
point="org.eclipse.debug.ui.launchConfigurationTabGroups">
|
||||
<launchConfigurationTabGroup
|
||||
class="org.eclipse.rse.remotecdt.RemoteLaunchConfigurationTabGroup"
|
||||
class="org.eclipse.rse.internal.remotecdt.RemoteLaunchConfigurationTabGroup"
|
||||
helpContextId="org.eclipse.rse.remotecdt.launchgroup"
|
||||
id="org.eclipse.rse.remotecdt.RemoteLaunchTabGroup"
|
||||
type="org.eclipse.rse.remotecdt.RemoteApplicationLaunch">
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
* Ewa Matejska (PalmSource)
|
||||
*******************************************************************************/
|
||||
|
||||
package org.eclipse.rse.remotecdt;
|
||||
package org.eclipse.rse.internal.remotecdt;
|
||||
|
||||
import org.eclipse.core.runtime.Plugin;
|
||||
import org.osgi.framework.BundleContext;
|
|
@ -10,7 +10,7 @@
|
|||
*******************************************************************************/
|
||||
|
||||
|
||||
package org.eclipse.rse.remotecdt;
|
||||
package org.eclipse.rse.internal.remotecdt;
|
||||
|
||||
import org.eclipse.cdt.debug.mi.core.IGDBServerMILaunchConfigurationConstants;
|
||||
import org.eclipse.debug.core.DebugPlugin;
|
|
@ -8,12 +8,12 @@
|
|||
* Contributors:
|
||||
* Martin Oberhuber (Wind River) - initial API and implementation
|
||||
*******************************************************************************/
|
||||
package org.eclipse.rse.remotecdt;
|
||||
package org.eclipse.rse.internal.remotecdt;
|
||||
|
||||
import org.eclipse.osgi.util.NLS;
|
||||
|
||||
public class Messages extends NLS {
|
||||
private static final String BUNDLE_NAME = "org.eclipse.rse.remotecdt.messages"; //$NON-NLS-1$
|
||||
private static final String BUNDLE_NAME = "org.eclipse.rse.internal.remotecdt.messages"; //$NON-NLS-1$
|
||||
|
||||
public static String Gdbserver_name_textfield_label;
|
||||
|
|
@ -9,7 +9,7 @@
|
|||
* Ewa Matejska (PalmSource)
|
||||
*******************************************************************************/
|
||||
|
||||
package org.eclipse.rse.remotecdt;
|
||||
package org.eclipse.rse.internal.remotecdt;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
@ -26,7 +26,7 @@ public class RemoteCDebuggerTab extends CDebuggerTab {
|
|||
public void createControl(Composite parent) {
|
||||
super.createControl(parent);
|
||||
PlatformUI.getWorkbench().getHelpSystem().setHelp(getControl(),
|
||||
"org.eclipse.rse.remotecdt.launchgroup"); //$NON-NLS-1$
|
||||
"org.eclipse.rse.internal.remotecdt.launchgroup"); //$NON-NLS-1$
|
||||
}
|
||||
|
||||
static final private String REMOTE_GDB_DEBUGGER_NAME = "remote gdb/mi"; //$NON-NLS-1$
|
|
@ -9,7 +9,7 @@
|
|||
* Ewa Matejska (PalmSource)
|
||||
*******************************************************************************/
|
||||
|
||||
package org.eclipse.rse.remotecdt;
|
||||
package org.eclipse.rse.internal.remotecdt;
|
||||
|
||||
import org.eclipse.cdt.launch.internal.ui.LaunchUIPlugin;
|
||||
import org.eclipse.cdt.launch.ui.CMainTab;
|
||||
|
@ -96,7 +96,7 @@ public class RemoteCMainTab extends CMainTab {
|
|||
});
|
||||
|
||||
PlatformUI.getWorkbench().getHelpSystem().setHelp(getControl(),
|
||||
"org.eclipse.rse.remotecdt.launchgroup"); //$NON-NLS-1$
|
||||
"org.eclipse.rse.internal.remotecdt.launchgroup"); //$NON-NLS-1$
|
||||
|
||||
LaunchUIPlugin.setDialogShell(parent.getShell());
|
||||
}
|
|
@ -11,7 +11,7 @@
|
|||
* Referenced GDBDebuggerPage code to write this.
|
||||
*******************************************************************************/
|
||||
|
||||
package org.eclipse.rse.remotecdt;
|
||||
package org.eclipse.rse.internal.remotecdt;
|
||||
|
||||
import org.eclipse.cdt.debug.mi.internal.ui.GDBDebuggerPage;
|
||||
import org.eclipse.core.runtime.CoreException;
|
|
@ -10,7 +10,7 @@
|
|||
*******************************************************************************/
|
||||
|
||||
|
||||
package org.eclipse.rse.remotecdt;
|
||||
package org.eclipse.rse.internal.remotecdt;
|
||||
import org.eclipse.cdt.launch.ui.CArgumentsTab;
|
||||
import org.eclipse.debug.ui.AbstractLaunchConfigurationTabGroup;
|
||||
import org.eclipse.debug.ui.CommonTab;
|
|
@ -10,7 +10,7 @@
|
|||
*******************************************************************************/
|
||||
|
||||
|
||||
package org.eclipse.rse.remotecdt;
|
||||
package org.eclipse.rse.internal.remotecdt;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
|
@ -294,6 +294,6 @@ public class RemoteRunLaunchDelegate extends AbstractCLaunchDelegate {
|
|||
}
|
||||
|
||||
protected String getPluginID() {
|
||||
return "org.eclipse.rse.remotecdt"; //$NON-NLS-1$
|
||||
return "org.eclipse.rse.internal.remotecdt"; //$NON-NLS-1$
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue