diff --git a/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/filters/ISystemFilter.java b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/filters/ISystemFilter.java index 23e6645fb24..83c69d1be2d 100644 --- a/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/filters/ISystemFilter.java +++ b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/filters/ISystemFilter.java @@ -14,12 +14,14 @@ * Contributors: * David Dykstal (IBM) - cleanup format and javadoc * Martin Oberhuber (Wind River) - [cleanup] Add API "since" Javadoc tags + * David Dykstal (IBM) - [224671] [api] org.eclipse.rse.core API leaks non-API types *******************************************************************************/ package org.eclipse.rse.core.filters; import org.eclipse.rse.core.model.IRSEModelObject; import org.eclipse.rse.core.references.IRSEReferencedObject; +import org.eclipse.rse.core.subsystems.ISubSystem; /** * A filter consists of filter strings and may be contained in a filter pool. @@ -605,6 +607,22 @@ public interface ISystemFilter extends IRSEReferencedObject, ISystemFilterContai */ public boolean isTransient(); + /** + * Set the subsytem of this filter. + * This is ignored if the filter is not transient. + * @param subsystem a subsystem associated with this transient filter + * @since 3.0 + */ + public void setSubSystem(ISubSystem subsystem); + + /** + * Get the subsystem for this filter. + * This will return null if the filter is not transient. + * @return the subsystem + * @since 3.0 + */ + public Object getSubSystem(); + /** * Clones a given filter to the given target filter. * All filter strings, and all nested filters, are copied. diff --git a/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/filters/SystemFilterReference.java b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/filters/SystemFilterReference.java index 74409665f11..977b54a44ba 100644 --- a/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/filters/SystemFilterReference.java +++ b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/filters/SystemFilterReference.java @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2002, 2007 IBM Corporation. All rights reserved. + * Copyright (c) 2002, 2008 IBM Corporation. All rights reserved. * This program and the accompanying materials are made available under the terms * of the Eclipse Public License v1.0 which accompanies this distribution, and is * available at http://www.eclipse.org/legal/epl-v10.html @@ -12,6 +12,7 @@ * * Contributors: * David Dykstal (IBM) - 142806: refactoring persistence framework + * David Dykstal (IBM) - [224671] [api] org.eclipse.rse.core API leaks non-API types ********************************************************************************/ package org.eclipse.rse.core.filters; @@ -27,10 +28,10 @@ import org.eclipse.rse.core.model.IRSEPersistableContainer; import org.eclipse.rse.core.model.ISystemContainer; import org.eclipse.rse.core.model.ISystemContentsType; import org.eclipse.rse.core.references.IRSEBaseReferencedObject; +import org.eclipse.rse.core.references.SystemReferencingObject; import org.eclipse.rse.core.subsystems.ISubSystem; import org.eclipse.rse.internal.core.filters.SystemFilterContainerReferenceCommonMethods; import org.eclipse.rse.internal.core.filters.SystemFilterStringReference; -import org.eclipse.rse.internal.references.SystemReferencingObject; /** * Represents a shadow or reference to a system filter. diff --git a/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/filters/SystemFilterUtil.java b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/filters/SystemFilterUtil.java new file mode 100644 index 00000000000..ff8b8b5584d --- /dev/null +++ b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/filters/SystemFilterUtil.java @@ -0,0 +1,25 @@ +/********************************************************************************* + * Copyright (c) 2008 IBM Corporation. All rights reserved. + * This program and the accompanying materials are made available under the terms + * of the Eclipse Public License v1.0 which accompanies this distribution, and is + * available at http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * David Dykstal (IBM) - [224671] [api] org.eclipse.rse.core API leaks non-API types + *********************************************************************************/ + +package org.eclipse.rse.core.filters; + +import org.eclipse.rse.internal.core.filters.SystemFilterSimple; + +/** + * Utilities to be used in the construction and manipulation of filters. + * @noextend + */ +public class SystemFilterUtil { + + public static ISystemFilter makeSimpleFilter(String name) { + return new SystemFilterSimple(name); + } + +} diff --git a/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/model/ISystemModifiableContainer.java b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/model/ISystemModifiableContainer.java new file mode 100644 index 00000000000..77d4d5f72e0 --- /dev/null +++ b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/model/ISystemModifiableContainer.java @@ -0,0 +1,25 @@ +/********************************************************************************* + * Copyright (c) 2008 IBM Corporation. All rights reserved. + * This program and the accompanying materials are made available under the terms + * of the Eclipse Public License v1.0 which accompanies this distribution, and is + * available at http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * David Dykstal (IBM) - [224671] [api] org.eclipse.rse.core API leaks non-API types + *********************************************************************************/ + +package org.eclipse.rse.core.model; + +/** + * A modifiable container allows its contents to be set directly. + */ +public interface ISystemModifiableContainer extends ISystemContainer { + + /** + * Cache contents of a certain type. + * @param type the contents type. + * @param cachedContents the contents to cache. + */ + public void setContents(ISystemContentsType type, Object[] cachedContents); + +} diff --git a/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/internal/references/SystemReferencedObject.java b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/references/SystemReferencedObject.java similarity index 76% rename from rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/internal/references/SystemReferencedObject.java rename to rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/references/SystemReferencedObject.java index 11817097aaf..5804f940483 100644 --- a/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/internal/references/SystemReferencedObject.java +++ b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/references/SystemReferencedObject.java @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2002, 2006 IBM Corporation. All rights reserved. + * Copyright (c) 2002, 2008 IBM Corporation. All rights reserved. * This program and the accompanying materials are made available under the terms * of the Eclipse Public License v1.0 which accompanies this distribution, and is * available at http://www.eclipse.org/legal/epl-v10.html @@ -11,26 +11,19 @@ * Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley. * * Contributors: - * {Name} (company) - description of contribution. + * David Dykstal (IBM) - [224671] [api] org.eclipse.rse.core API leaks non-API types ********************************************************************************/ -package org.eclipse.rse.internal.references; +package org.eclipse.rse.core.references; import org.eclipse.rse.core.model.RSEModelObject; -import org.eclipse.rse.core.references.IRSEBaseReferencingObject; -import org.eclipse.rse.core.references.IRSEReferencedObject; /** * A class to encapsulate the operations required of an object which - * supports references to it by other objects (SystemReferencingObject). + * supports references to it by other objects ({@link SystemReferencingObject}). * This type of class needs to support maintaining an in-memory list of * all who reference it so that list can be following on delete and * rename operations. - *
- * These references are not persistent. Persistent references are managed - * by the subclass SystemPersistableReferencedObject. - *
- * SystemFilter is a known concrete subclass. */ public abstract class SystemReferencedObject extends RSEModelObject implements IRSEReferencedObject { @@ -40,12 +33,9 @@ public abstract class SystemReferencedObject extends RSEModelObject implements I * Default constructor. Typically called by EMF factory method. */ protected SystemReferencedObject() { - helper = new SystemReferencedObjectHelper(this); + helper = new SystemReferencedObjectHelper(); } - // ---------------------------------- - // IRSEReferencedObject methods... - // ---------------------------------- /** * Add a reference, increment reference count, return new count * @param ref the referencing object diff --git a/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/references/SystemReferencedObjectHelper.java b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/references/SystemReferencedObjectHelper.java new file mode 100644 index 00000000000..0b668223cca --- /dev/null +++ b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/references/SystemReferencedObjectHelper.java @@ -0,0 +1,72 @@ +/******************************************************************************* + * Copyright (c) 2002, 2008 IBM Corporation and others. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Initial Contributors: + * The following IBM employees contributed to the Remote System Explorer + * component that contains this file: David McKnight, Kushal Munir, + * Michael Berger, David Dykstal, Phil Coulthard, Don Yantzi, Eric Simpson, + * Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley. + * + * Contributors: + * David Dykstal (IBM) - [224671] [api] org.eclipse.rse.core API leaks non-API types + *******************************************************************************/ + +package org.eclipse.rse.core.references; + +import java.util.Vector; + +/** + * The class should be used by subclasses of {@link SystemReferencedObject} by instantiating it and delegating to it. + */ +public class SystemReferencedObjectHelper { + + private Vector referencingObjects = new Vector(); + + /** + * @see IRSEBaseReferencedObject#addReference(IRSEBaseReferencingObject) + */ + public int addReference(IRSEBaseReferencingObject ref) { + referencingObjects.addElement(ref); + return referencingObjects.size(); + } + + /** + * @see IRSEBaseReferencedObject#removeReference(IRSEBaseReferencingObject) + */ + public int removeReference(IRSEBaseReferencingObject ref) { + referencingObjects.removeElement(ref); + return referencingObjects.size(); + } + + /** + * @see IRSEBaseReferencedObject#getReferenceCount() + */ + public int getReferenceCount() { + return referencingObjects.size(); + } + + /** + * Clear the list of referenced objects. + */ + public void removeAllReferences() { + IRSEBaseReferencingObject[] references = getReferencingObjects(); + for (int i = 0; i < references.length; i++) { + IRSEBaseReferencingObject reference = references[i]; + removeReference(reference); + } + } + + /** + * @see IRSEBaseReferencedObject#getReferencingObjects() + */ + public IRSEBaseReferencingObject[] getReferencingObjects() { + IRSEBaseReferencingObject[] references = new IRSEBaseReferencingObject[referencingObjects.size()]; + referencingObjects.toArray(references); + return references; + } + +} diff --git a/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/internal/references/SystemReferencingObject.java b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/references/SystemReferencingObject.java similarity index 86% rename from rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/internal/references/SystemReferencingObject.java rename to rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/references/SystemReferencingObject.java index fe673349d8c..964942f9c96 100644 --- a/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/internal/references/SystemReferencingObject.java +++ b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/references/SystemReferencingObject.java @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2002, 2007 IBM Corporation and others. All rights reserved. + * Copyright (c) 2002, 2008 IBM Corporation and others. All rights reserved. * This program and the accompanying materials are made available under the terms * of the Eclipse Public License v1.0 which accompanies this distribution, and is * available at http://www.eclipse.org/legal/epl-v10.html @@ -12,25 +12,21 @@ * * Contributors: * Martin Oberhuber (Wind River) - [184095] Replace systemTypeName by IRSESystemType + * David Dykstal (IBM) - [224671] [api] org.eclipse.rse.core API leaks non-API types ********************************************************************************/ -package org.eclipse.rse.internal.references; +package org.eclipse.rse.core.references; import org.eclipse.rse.core.model.RSEModelObject; -import org.eclipse.rse.core.references.IRSEBaseReferencedObject; -import org.eclipse.rse.core.references.IRSEReferencingObject; import org.eclipse.rse.internal.core.RSECoreMessages; /** * A class to encapsulate the operations required of an object which * is merely a reference to another object, something we call a shadow. - * Such shadows are needed to support a GUI which displays the same + * Such shadows are needed to support a UI which displays the same * object in multiple places. To enable that, it is necessary not to * use the same physical object in each UI representation as the UI * will only know how to update/refresh the first one it finds. - *
- * These references are not persistent. Persistent references are managed - * by the subclass SystemPersistableReferencingObject. */ public abstract class SystemReferencingObject extends RSEModelObject implements IRSEReferencingObject { private SystemReferencingObjectHelper helper = null; diff --git a/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/internal/references/SystemReferencingObjectHelper.java b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/references/SystemReferencingObjectHelper.java similarity index 81% rename from rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/internal/references/SystemReferencingObjectHelper.java rename to rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/references/SystemReferencingObjectHelper.java index 4ac567070ea..9afa67f0c94 100644 --- a/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/internal/references/SystemReferencingObjectHelper.java +++ b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/references/SystemReferencingObjectHelper.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2002, 2007 IBM Corporation and others. + * Copyright (c) 2002, 2008 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -12,19 +12,15 @@ * Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley. * * Contributors: - * {Name} (company) - description of contribution. + * David Dykstal (IBM) - [224671] [api] org.eclipse.rse.core API leaks non-API types *******************************************************************************/ -package org.eclipse.rse.internal.references; +package org.eclipse.rse.core.references; -import org.eclipse.rse.core.references.IRSEBaseReferencedObject; -import org.eclipse.rse.core.references.IRSEBaseReferencingObject; /** - * This is a class that implements all the methods in the IRSEReferencingObject. - * It makes implementing this interface trivial. - * The easiest use of this class is to subclass it, but since that is not - * always possible, it is not abstract and hence can be leveraged via containment. + * The class should be used by subclasses of {@link SystemReferencingObject} by instantiating it and delegating to it. + * @noextend */ public class SystemReferencingObjectHelper { diff --git a/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/internal/core/filters/SystemFilter.java b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/internal/core/filters/SystemFilter.java index 60391e6068a..a14784d5b73 100644 --- a/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/internal/core/filters/SystemFilter.java +++ b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/internal/core/filters/SystemFilter.java @@ -16,6 +16,7 @@ * David Dykstal (IBM) - [206901] fixing ArrayStoreException in getPersistableChildren * Removed caching that was here because of previous EMF/MOF implementation. This makes * the class simpler. + * David Dykstal (IBM) - [224671] [api] org.eclipse.rse.core API leaks non-API types ********************************************************************************/ package org.eclipse.rse.internal.core.filters; @@ -34,11 +35,11 @@ import org.eclipse.rse.core.filters.ISystemFilterPool; import org.eclipse.rse.core.filters.ISystemFilterPoolManager; import org.eclipse.rse.core.filters.ISystemFilterPoolManagerProvider; import org.eclipse.rse.core.filters.ISystemFilterString; -import org.eclipse.rse.core.filters.SystemFilterSimple; import org.eclipse.rse.core.model.IRSEPersistableContainer; import org.eclipse.rse.core.model.ISystemProfile; +import org.eclipse.rse.core.references.SystemReferencedObject; +import org.eclipse.rse.core.subsystems.ISubSystem; import org.eclipse.rse.internal.core.RSECoreMessages; -import org.eclipse.rse.internal.references.SystemReferencedObject; /** * A filter is an encapsulation of a unique name, and a list of filter strings. @@ -186,7 +187,6 @@ public class SystemFilter extends SystemReferencedObject implements ISystemFilte * and not intended to be saved or part of the filter framework. Eg it has no manager or provider. *
* We always return false. - * @see SystemFilterSimple */ public boolean isTransient() { return false; @@ -904,6 +904,20 @@ public class SystemFilter extends SystemReferencedObject implements ISystemFilte public boolean isSetSingleFilterStringOnly() { return singleFilterStringOnly; } + + /* (non-Javadoc) + * @see org.eclipse.rse.core.filters.ISystemFilter#setSubSystem(org.eclipse.rse.core.subsystems.ISubSystem) + */ + public void setSubSystem(ISubSystem subsystem) { + // does nothing this is not a transient filter + } + + /* (non-Javadoc) + * @see org.eclipse.rse.core.filters.ISystemFilter#getSubSystem() + */ + public Object getSubSystem() { + return null; // since this is not a transient filter + } /* (non-Javadoc) * @see org.eclipse.rse.core.model.IRSEPersistableContainer#commit() diff --git a/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/filters/SystemFilterSimple.java b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/internal/core/filters/SystemFilterSimple.java similarity index 94% rename from rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/filters/SystemFilterSimple.java rename to rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/internal/core/filters/SystemFilterSimple.java index 23c3899615e..bc1622b741a 100644 --- a/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/filters/SystemFilterSimple.java +++ b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/internal/core/filters/SystemFilterSimple.java @@ -15,9 +15,10 @@ * David Dykstal (IBM) - [206901] fixing ArrayStoreException in getPersistableChildren * Fix involved removing visibility for data referenced in SystemFilter. Addressed * that by modifying the implementation of SystemFilterSimple to use its own data. + * David Dykstal (IBM) - [224671] [api] org.eclipse.rse.core API leaks non-API types *******************************************************************************/ -package org.eclipse.rse.core.filters; +package org.eclipse.rse.internal.core.filters; import java.util.ArrayList; import java.util.Arrays; @@ -25,9 +26,13 @@ import java.util.HashMap; import java.util.List; import org.eclipse.core.resources.IFile; -import org.eclipse.rse.core.model.ISystemContainer; +import org.eclipse.rse.core.filters.ISystemFilter; +import org.eclipse.rse.core.filters.ISystemFilterPoolManager; +import org.eclipse.rse.core.filters.ISystemFilterPoolManagerProvider; +import org.eclipse.rse.core.filters.ISystemFilterString; import org.eclipse.rse.core.model.ISystemContentsType; -import org.eclipse.rse.internal.core.filters.SystemFilter; +import org.eclipse.rse.core.model.ISystemModifiableContainer; +import org.eclipse.rse.core.subsystems.ISubSystem; /** * A lightweight implementation of ISystemFilter. @@ -47,14 +52,14 @@ import org.eclipse.rse.internal.core.filters.SystemFilter; *
* To configure the text on the dialog, call these methods:
@@ -302,7 +302,7 @@ public class SystemSelectRemoteFileOrFolderForm
// set the default filters we will show when the user expands a connection...
String filterName = null;
- SystemFilterSimple filter = null;
+ ISystemFilter filter = null;
int filterCount = showRootFilter ? 2 : 1;
if (preSelectRoot)
filterCount = 1;
@@ -327,9 +327,9 @@ public class SystemSelectRemoteFileOrFolderForm
}
else
filterName = fileMode ? SystemFileResources.RESID_FILTER_DRIVES : SystemFileResources.RESID_FILTER_DRIVES;
- filter = new SystemFilterSimple(filterName);
- filter.setParent(ss);
- filter.setFilterString(rffs.toString());
+ filter = SystemFilterUtil.makeSimpleFilter(filterName);
+ filter.setSubSystem(ss);
+ filter.setFilterStrings(new String[] {rffs.toString()});
filters[idx++] = filter;
//System.out.println("FILTER 1: " + filter.getFilterString());
if (preSelectRoot)
@@ -346,9 +346,9 @@ public class SystemSelectRemoteFileOrFolderForm
// filter two: "\folder1\folder2"
rffs.setPath(folderAbsolutePath);
- filter = new SystemFilterSimple(rffs.toStringNoSwitches());
- filter.setParent(ss);
- filter.setFilterString(rffs.toString());
+ filter = SystemFilterUtil.makeSimpleFilter(rffs.toStringNoSwitches());
+ filter.setSubSystem(ss);
+ filter.setFilterStrings(new String[] {rffs.toString()});
filters[idx] = filter;
preSelectFilter = filter;
diff --git a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/internal/ui/view/SystemSelectRemoteObjectAPIProviderImpl.java b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/internal/ui/view/SystemSelectRemoteObjectAPIProviderImpl.java
index 0ec608ca6e8..0788b55eda1 100644
--- a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/internal/ui/view/SystemSelectRemoteObjectAPIProviderImpl.java
+++ b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/internal/ui/view/SystemSelectRemoteObjectAPIProviderImpl.java
@@ -1,5 +1,5 @@
/********************************************************************************
- * Copyright (c) 2002, 2007 IBM Corporation and others. All rights reserved.
+ * Copyright (c) 2002, 2008 IBM Corporation and others. All rights reserved.
* This program and the accompanying materials are made available under the terms
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
* available at http://www.eclipse.org/legal/epl-v10.html
@@ -17,6 +17,7 @@
* Martin Oberhuber (Wind River) - [175680] Deprecate obsolete ISystemRegistry methods
* Tobias Schwarz (Wind River) - [173267] "empty list" should not be displayed
* Martin Oberhuber (Wind River) - [190271] Move ISystemViewInputProvider to Core
+ * David Dykstal (IBM) - [224671] [api] org.eclipse.rse.core API leaks non-API types
********************************************************************************/
package org.eclipse.rse.internal.ui.view;
@@ -26,7 +27,7 @@ import org.eclipse.rse.core.IRSESystemType;
import org.eclipse.rse.core.filters.ISystemFilter;
import org.eclipse.rse.core.filters.ISystemFilterReference;
import org.eclipse.rse.core.filters.ISystemFilterStringReference;
-import org.eclipse.rse.core.filters.SystemFilterSimple;
+import org.eclipse.rse.core.filters.SystemFilterUtil;
import org.eclipse.rse.core.model.IHost;
import org.eclipse.rse.core.model.ISystemViewInputProvider;
import org.eclipse.rse.core.subsystems.ISubSystem;
@@ -228,9 +229,8 @@ public class SystemSelectRemoteObjectAPIProviderImpl
}
/**
- * Set the quick filters to be exposed to the user. These will be shown to the
- * user when they expand a connection.
- * @see org.eclipse.rse.core.filters.SystemFilterSimple
+ * Set the filters to be exposed to the user. These will be shown to the
+ * user when they expand a connection.
*/
public void setQuickFilters(ISystemFilter[] filters)
{
@@ -428,10 +428,10 @@ public class SystemSelectRemoteObjectAPIProviderImpl
for (int idx=0; idx