mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 14:42:11 +02:00
Refactor to hide things we know should be internal.
This commit is contained in:
parent
bfb0f1ab9c
commit
e8477ef98a
9 changed files with 10 additions and 6 deletions
|
@ -1,3 +1,3 @@
|
|||
#Wed Mar 11 21:30:22 EDT 2009
|
||||
#Fri Apr 17 14:45:21 EDT 2009
|
||||
eclipse.preferences.version=1
|
||||
encoding//src/org/eclipse/cdt/launch/remote/messages.properties=8859_1
|
||||
encoding//src/org/eclipse/cdt/internal/launch/remote/messages.properties=8859_1
|
||||
|
|
|
@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
|
|||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.launch.remote;singleton:=true
|
||||
Bundle-Version: 2.2.0.qualifier
|
||||
Bundle-Activator: org.eclipse.cdt.launch.remote.Activator
|
||||
Bundle-Activator: org.eclipse.cdt.internal.launch.remote.Activator
|
||||
Bundle-Localization: plugin
|
||||
Require-Bundle: org.eclipse.rse.ui;bundle-version="[3.0.0,4.0.0)",
|
||||
org.eclipse.rse.subsystems.shells.core;bundle-version="[3.0.0,4.0.0)",
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
* Ewa Matejska (PalmSource)
|
||||
*******************************************************************************/
|
||||
|
||||
package org.eclipse.cdt.launch.remote;
|
||||
package org.eclipse.cdt.internal.launch.remote;
|
||||
|
||||
import org.eclipse.core.runtime.Plugin;
|
||||
import org.osgi.framework.BundleContext;
|
|
@ -13,12 +13,12 @@
|
|||
* Anna Dushistova (MontaVista) - [181517][usability] Specify commands to be run before remote application launch
|
||||
* Nikita Shulga (EmbeddedAlley) - [265236][remotecdt] Wait for RSE to initialize before querying it for host list
|
||||
*******************************************************************************/
|
||||
package org.eclipse.cdt.launch.remote;
|
||||
package org.eclipse.cdt.internal.launch.remote;
|
||||
|
||||
import org.eclipse.osgi.util.NLS;
|
||||
|
||||
public class Messages extends NLS {
|
||||
private static final String BUNDLE_NAME = "org.eclipse.cdt.launch.remote.messages"; //$NON-NLS-1$
|
||||
private static final String BUNDLE_NAME = "org.eclipse.cdt.internal.launch.remote.messages"; //$NON-NLS-1$
|
||||
|
||||
public static String Gdbserver_name_textfield_label;
|
||||
|
|
@ -14,6 +14,7 @@ import java.util.ArrayList;
|
|||
import java.util.Arrays;
|
||||
import java.util.Iterator;
|
||||
|
||||
import org.eclipse.cdt.internal.launch.remote.Messages;
|
||||
import org.eclipse.core.runtime.CoreException;
|
||||
import org.eclipse.core.runtime.IProgressMonitor;
|
||||
import org.eclipse.core.runtime.OperationCanceledException;
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
|
||||
package org.eclipse.cdt.launch.remote;
|
||||
|
||||
import org.eclipse.cdt.internal.launch.remote.Messages;
|
||||
import org.eclipse.cdt.launch.ui.CMainTab;
|
||||
import org.eclipse.core.resources.IProject;
|
||||
import org.eclipse.core.runtime.CoreException;
|
||||
|
|
|
@ -14,6 +14,7 @@
|
|||
package org.eclipse.cdt.launch.remote;
|
||||
|
||||
import org.eclipse.cdt.debug.mi.internal.ui.GDBDebuggerPage;
|
||||
import org.eclipse.cdt.internal.launch.remote.Messages;
|
||||
import org.eclipse.core.runtime.CoreException;
|
||||
import org.eclipse.debug.core.ILaunchConfiguration;
|
||||
import org.eclipse.debug.core.ILaunchConfigurationWorkingCopy;
|
||||
|
|
|
@ -32,6 +32,7 @@ import org.eclipse.cdt.debug.core.cdi.ICDISession;
|
|||
import org.eclipse.cdt.debug.core.cdi.model.ICDITarget;
|
||||
import org.eclipse.cdt.debug.mi.core.GDBServerCDIDebugger2;
|
||||
import org.eclipse.cdt.debug.mi.core.IGDBServerMILaunchConfigurationConstants;
|
||||
import org.eclipse.cdt.internal.launch.remote.Messages;
|
||||
import org.eclipse.cdt.launch.AbstractCLaunchDelegate;
|
||||
import org.eclipse.core.runtime.CoreException;
|
||||
import org.eclipse.core.runtime.IPath;
|
||||
|
|
Loading…
Add table
Reference in a new issue