mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-04 15:45:25 +02:00
[refactoring] move rse.internal.references from UI to core
This commit is contained in:
parent
12e0b48ed6
commit
e2bbff4f54
18 changed files with 9 additions and 11 deletions
|
@ -32,7 +32,6 @@
|
|||
;../org.eclipse.rse.subsystems.shells.ssh/src
|
||||
;../org.eclipse.rse.ui/filters
|
||||
;../org.eclipse.rse.ui/persistence
|
||||
;../org.eclipse.rse.ui/references
|
||||
;../org.eclipse.rse.ui/model
|
||||
;../org.eclipse.rse.ui/UI
|
||||
;../org.eclipse.rse.ui/subsystems
|
||||
|
|
|
@ -13,5 +13,6 @@ Export-Package: org.eclipse.rse.core,
|
|||
org.eclipse.rse.core.filters,
|
||||
org.eclipse.rse.core.model,
|
||||
org.eclipse.rse.core.persistance,
|
||||
org.eclipse.rse.core.references
|
||||
org.eclipse.rse.core.references,
|
||||
org.eclipse.rse.internal.references
|
||||
Bundle-Vendor: Eclipse.org
|
||||
|
|
|
@ -26,9 +26,11 @@ public class RSEModelResources extends NLS {
|
|||
private static String BUNDLE_NAME = "org.eclipse.rse.core.model.RSEModelResources"; //$NON-NLS-1$
|
||||
|
||||
public static String RESID_MODELOBJECTS_MODELOBJECT_DESCRIPTION;
|
||||
public static String RESID_MODELOBJECTS_REFERENCINGOBJECT_DESCRIPTION;
|
||||
|
||||
static {
|
||||
// load message values from bundle file
|
||||
NLS.initializeMessages(BUNDLE_NAME, RSEModelResources.class);
|
||||
}
|
||||
|
||||
}
|
|
@ -16,4 +16,5 @@
|
|||
|
||||
# NLS_MESSAGEFORMAT_NONE
|
||||
|
||||
RESID_MODELOBJECTS_MODELOBJECT_DESCRIPTION=An RSE Model Object represents any object in the Remote Systems Explorer.
|
||||
RESID_MODELOBJECTS_MODELOBJECT_DESCRIPTION=An RSE Model Object represents any object in the Remote Systems Explorer.
|
||||
RESID_MODELOBJECTS_REFERENCINGOBJECT_DESCRIPTION=A Referencing Object encapsulates the operations required of an object which is merely a reference to another object.
|
||||
|
|
|
@ -16,9 +16,9 @@
|
|||
|
||||
package org.eclipse.rse.internal.references;
|
||||
import org.eclipse.rse.core.model.RSEModelObject;
|
||||
import org.eclipse.rse.core.model.RSEModelResources;
|
||||
import org.eclipse.rse.core.references.IRSEBaseReferencedObject;
|
||||
import org.eclipse.rse.core.references.IRSEReferencingObject;
|
||||
import org.eclipse.rse.ui.SystemResources;
|
||||
|
||||
|
||||
/**
|
||||
|
@ -89,7 +89,7 @@ public abstract class SystemReferencingObject extends RSEModelObject implements
|
|||
|
||||
public String getDescription()
|
||||
{
|
||||
return SystemResources.RESID_MODELOBJECTS_REFERENCINGOBJECT_DESCRIPTION;
|
||||
return RSEModelResources.RESID_MODELOBJECTS_REFERENCINGOBJECT_DESCRIPTION;
|
||||
}
|
||||
|
||||
protected final SystemReferencingObjectHelper getHelper() {
|
|
@ -2,7 +2,6 @@
|
|||
<classpath>
|
||||
<classpathentry kind="src" path="filters"/>
|
||||
<classpathentry kind="src" path="persistence"/>
|
||||
<classpathentry kind="src" path="references"/>
|
||||
<classpathentry kind="src" path="model"/>
|
||||
<classpathentry kind="src" path="UI"/>
|
||||
<classpathentry kind="src" path="subsystems"/>
|
||||
|
|
|
@ -29,7 +29,6 @@ Export-Package: org.eclipse.rse.core,
|
|||
org.eclipse.rse.internal.model,
|
||||
org.eclipse.rse.internal.persistence,
|
||||
org.eclipse.rse.internal.persistence.dom,
|
||||
org.eclipse.rse.internal.references,
|
||||
org.eclipse.rse.model,
|
||||
org.eclipse.rse.persistence,
|
||||
org.eclipse.rse.persistence.dom,
|
||||
|
|
|
@ -1224,7 +1224,6 @@ public class SystemResources extends NLS
|
|||
public static String RESID_MODELOBJECTS_HOSTPOOL_DESCRIPTION;
|
||||
public static String RESID_MODELOBJECTS_PROFILE_DESCRIPTION;
|
||||
public static String RESID_MODELOBJECTS_SERVERLAUNCHER_DESCRIPTION;
|
||||
public static String RESID_MODELOBJECTS_REFERENCINGOBJECT_DESCRIPTION;
|
||||
public static String RESID_MODELOBJECTS_FILTER_DESCRIPTION;
|
||||
public static String RESID_MODELOBJECTS_FILTERPOOL_DESCRIPTION;
|
||||
|
||||
|
|
|
@ -1414,7 +1414,6 @@ RESID_MODELOBJECTS_FILTERSTRING_DESCRIPTION=A filter string is a single string i
|
|||
RESID_MODELOBJECTS_HOSTPOOL_DESCRIPTION=A host pool is a group of hosts. There is one host pool associated with each profile.
|
||||
RESID_MODELOBJECTS_PROFILE_DESCRIPTION=Your profile is the object with which all your unique settings and RSE objects such as connections are associated.
|
||||
RESID_MODELOBJECTS_SERVERLAUNCHER_DESCRIPTION=The Server Launcher is an object for storing configuration details about how to launch servers on the remote host.
|
||||
RESID_MODELOBJECTS_REFERENCINGOBJECT_DESCRIPTION=A Referencing Object encapsulates the operations required of an object which is merely a reference to another object.
|
||||
RESID_MODELOBJECTS_FILTER_DESCRIPTION=A filter is a collection of filter strings that determines which files will pass through it.
|
||||
RESID_MODELOBJECTS_FILTERPOOL_DESCRIPTION=A filter pool is a group of filters. There is one filter pool associated with each profile.
|
||||
|
||||
|
|
|
@ -9,8 +9,7 @@ bin.includes = HelpContexts.xml,\
|
|||
META-INF/,\
|
||||
schema/
|
||||
output.. = bin/
|
||||
source.. = references/,\
|
||||
filters/,\
|
||||
source.. = filters/,\
|
||||
model/,\
|
||||
subsystems/,\
|
||||
systems/,\
|
||||
|
|
Loading…
Add table
Reference in a new issue