1
0
Fork 0
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:
Martin Oberhuber 2006-08-30 15:58:56 +00:00
parent 12e0b48ed6
commit e2bbff4f54
18 changed files with 9 additions and 11 deletions

View file

@ -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

View file

@ -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

View file

@ -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);
}
}

View file

@ -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.

View file

@ -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() {

View file

@ -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"/>

View file

@ -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,

View file

@ -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;

View file

@ -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.

View file

@ -9,8 +9,7 @@ bin.includes = HelpContexts.xml,\
META-INF/,\
schema/
output.. = bin/
source.. = references/,\
filters/,\
source.. = filters/,\
model/,\
subsystems/,\
systems/,\