diff --git a/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/ISystemFileConstants.java b/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/ISystemFileConstants.java index 3472d28d764..0bbfe861563 100644 --- a/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/ISystemFileConstants.java +++ b/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/ISystemFileConstants.java @@ -23,7 +23,6 @@ package org.eclipse.rse.files.ui; */ public interface ISystemFileConstants { -// public static final String PLUGIN_ID ="com.ibm.etools.systems"; public static final String PLUGIN_ID ="org.eclipse.rse.files.ui"; public static final String PREFIX = PLUGIN_ID+".files."; // Icons diff --git a/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/actions/SystemAbstractRemoteFilePopupMenuExtensionAction.java b/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/actions/SystemAbstractRemoteFilePopupMenuExtensionAction.java index 83c71ed7f2b..ec30b372201 100644 --- a/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/actions/SystemAbstractRemoteFilePopupMenuExtensionAction.java +++ b/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/actions/SystemAbstractRemoteFilePopupMenuExtensionAction.java @@ -26,7 +26,7 @@ import org.eclipse.ui.IObjectActionDelegate; /** * This is a base class to simplify the creation of actions supplied via the - * com.ibm.etools.systems.core.popupMenus extension point, targeting remote files + * org.eclipse.rse.ui.popupMenus extension point, targeting remote files * and/or remote folders. *
* The only method you must implement is {@link #run()}. diff --git a/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/actions/SystemMoveRemoteFileAction.java b/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/actions/SystemMoveRemoteFileAction.java index e2ac52b3557..fe2a518e453 100644 --- a/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/actions/SystemMoveRemoteFileAction.java +++ b/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/actions/SystemMoveRemoteFileAction.java @@ -168,7 +168,7 @@ public class SystemMoveRemoteFileAction extends SystemCopyRemoteFileAction { //System.out.println("Firing REFRESH_REMOTE"); sr.fireEvent( - new com.ibm.etools.systems.model.impl.SystemResourceChangeEvent( + new org.eclipse.rse.model.impl.SystemResourceChangeEvent( parent,ISystemResourceChangeEvent.EVENT_REFRESH_REMOTE, null) ); } else @@ -176,11 +176,11 @@ public class SystemMoveRemoteFileAction extends SystemCopyRemoteFileAction //System.out.println("MOVE OPERATION: Firing REFRESH"); // FIRST REFRESH EXPANDED FILTER sr.fireEvent( - new com.ibm.etools.systems.model.impl.SystemResourceChangeEvent( + new org.eclipse.rse.model.impl.SystemResourceChangeEvent( parent,ISystemResourceChangeEvent.EVENT_REFRESH, null) ); // NEXT REFRESH ALL OTHER PLACES THAT MIGHT BE SHOWING THE SOURCE FOLDER sr.fireEvent( - new com.ibm.etools.systems.model.impl.SystemResourceChangeEvent( + new org.eclipse.rse.model.impl.SystemResourceChangeEvent( firstSelectionParent,ISystemResourceChangeEvent.EVENT_REFRESH_REMOTE, null) ); } } diff --git a/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/propertypages/SystemAbstractRemoteFilePropertyPageExtensionAction.java b/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/propertypages/SystemAbstractRemoteFilePropertyPageExtensionAction.java index fda09965aee..38f359907a1 100644 --- a/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/propertypages/SystemAbstractRemoteFilePropertyPageExtensionAction.java +++ b/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/propertypages/SystemAbstractRemoteFilePropertyPageExtensionAction.java @@ -29,7 +29,7 @@ import org.eclipse.ui.IWorkbenchPropertyPage; /** * This is a base class to simplify the creation of property pages supplied via the - * com.ibm.etools.systems.core.propertyPages extension point, targeting remote files + * org.eclipse.rse.ui.propertyPages extension point, targeting remote files * and/or remote folders. *
* The only method you must implement is {@link #createContentArea(Composite)}.
diff --git a/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/search/SystemSearchPage.java b/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/search/SystemSearchPage.java
index 98e95204d01..e0091599b23 100644
--- a/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/search/SystemSearchPage.java
+++ b/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/search/SystemSearchPage.java
@@ -75,7 +75,7 @@ import org.eclipse.swt.widgets.Shell;
*/
public class SystemSearchPage extends DialogPage implements ISearchPage {
- public static final String SYSTEM_SEARCH_PAGE_ID = "com.ibm.etools.systems.core.search.searchPage";
+ public static final String SYSTEM_SEARCH_PAGE_ID = "org.eclipse.rse.files.ui.search.searchPage";
// search utility
private SystemSearchUtil util;
diff --git a/rse/plugins/org.eclipse.rse.logging/src/org/eclipse/rse/logging/Logger.java b/rse/plugins/org.eclipse.rse.logging/src/org/eclipse/rse/logging/Logger.java
index 6ab0e701917..b2c42365533 100644
--- a/rse/plugins/org.eclipse.rse.logging/src/org/eclipse/rse/logging/Logger.java
+++ b/rse/plugins/org.eclipse.rse.logging/src/org/eclipse/rse/logging/Logger.java
@@ -112,7 +112,7 @@ public class Logger implements IPropertyChangeListener {
* and the output will be:
*
* ---------------------------------------------------------------
- * DEBUG com.ibm.etools.systems.logging someClassName
+ * DEBUG org.eclipse.rse.logging someClassName
* someMessage
* ---------------------------------------------------------------
*
diff --git a/rse/plugins/org.eclipse.rse.logging/src/org/eclipse/rse/logging/performance/PerformanceLogger.java b/rse/plugins/org.eclipse.rse.logging/src/org/eclipse/rse/logging/performance/PerformanceLogger.java
index 2413a4a8a33..137a040d76b 100644
--- a/rse/plugins/org.eclipse.rse.logging/src/org/eclipse/rse/logging/performance/PerformanceLogger.java
+++ b/rse/plugins/org.eclipse.rse.logging/src/org/eclipse/rse/logging/performance/PerformanceLogger.java
@@ -289,11 +289,6 @@ public class PerformanceLogger {
register(DEFAULT_COMPONENT, "", "");
}
/*Use the class method name for CallerID*/
- /*
- * Sample method name retruned by getMethodName():
- * " com.ibm.etools.iseries.core.resources.ISeriesEditableSrcPhysicalFileMember.doDownload(ISeriesEditableSrcPhysicalFileMember.java:558)"
- *
- */
String methodPath = getMethodName(true);
return start(DEFAULT_COMPONENT, methodPath);
@@ -597,8 +592,8 @@ public class PerformanceLogger {
* Here to parse the exception string to get the caller which is the current method location
* to be obtained. The Exception stack should show the PerformanceLogger start() in the satck first:
* -java.lang.Exception
- * -at com.ibm.etools.systems.logging.performance.PerformanceLogger.start(PerformanceLogger.java:151)
- * -at com.ibm.etools.systems.logging.performance.PerformanceLogger.start(PerformanceLogger.java:135)
+ * -at org.eclipse.rse.logging.performance.PerformanceLogger.start(PerformanceLogger.java:151)
+ * -at org.eclipse.rse.logging.performance.PerformanceLogger.start(PerformanceLogger.java:135)
* Depending if the caller is using default task ID or not, so the caller is the 3rd or the 4th in the stack.
*/
@@ -609,16 +604,14 @@ public class PerformanceLogger {
methodPath = methodPath.substring(4);
if (parsed) {
try {
- /* The method name obtained looks like this:
- * " com.ibm.etools.iseries.core.resources.ISeriesEditableSrcPhysicalFileMember.doDownload(ISeriesEditableSrcPhysicalFileMember.java:558)"
- */
+
int i = methodPath.indexOf('(');
if (i != -1) methodPath = methodPath.substring(0, i); //strip of the substring enclosed in ()
- //Now we have "com.ibm.etools.systems.logging.performance.PerformanceLogger.start"
+ //Now we have "org.eclipse.rse.logging.performance.PerformanceLogger.start"
i = methodPath.lastIndexOf('.'); //Get the method name after the last period (.)
String methodName = methodPath.substring(i + 1); //Now we have the method name "start"
String className = methodPath.substring(0, i); //remove method name from the string
- //We are left with "com.ibm.etools.systems.logging.performance.PerformanceLogger"
+ //We are left with "org.eclipse.rse.logging.performance.PerformanceLogger"
i = className.lastIndexOf('.');
if (i != -1) className = className.substring(i + 1); //Now we have the class name "PerformanceLogger"
methodPath = className + "." + methodName;
diff --git a/rse/plugins/org.eclipse.rse.logging/src/org/eclipse/rse/logging/ui/LoggingPreferencePage.java b/rse/plugins/org.eclipse.rse.logging/src/org/eclipse/rse/logging/ui/LoggingPreferencePage.java
index 038795ede60..52fb38c93d0 100644
--- a/rse/plugins/org.eclipse.rse.logging/src/org/eclipse/rse/logging/ui/LoggingPreferencePage.java
+++ b/rse/plugins/org.eclipse.rse.logging/src/org/eclipse/rse/logging/ui/LoggingPreferencePage.java
@@ -97,7 +97,7 @@ public abstract class LoggingPreferencePage extends PreferencePage implements IW
text = LoggingPreferenceLabels.LOGGING_PREFERENCE_PAGE_FULL_DEBUG;
radioButton3 = createRadioButton(composite1_radioButton, LabelUtil.assignMnemonic(text, used));
initializeValues();
- PlatformUI.getWorkbench().getHelpSystem().setHelp(parent, "com.ibm.etools.systems.logging.rsel0000");
+ PlatformUI.getWorkbench().getHelpSystem().setHelp(parent, "org.eclipse.rse.logging.rsel0000");
return new Composite(parent, SWT.NULL);
}
diff --git a/rse/plugins/org.eclipse.rse.services.dstore/dstore_miners.rmtjardesc b/rse/plugins/org.eclipse.rse.services.dstore/dstore_miners.rmtjardesc
new file mode 100644
index 00000000000..e8ea4adf506
--- /dev/null
+++ b/rse/plugins/org.eclipse.rse.services.dstore/dstore_miners.rmtjardesc
@@ -0,0 +1,14 @@
+
+
* By default this returns Platform.getAdapterManager().getAdapter(this, adapterType);
* This in turn results in the default subsystem adapter SystemViewSubSystemAdapter,
- * in package com.ibm.etools.systems.core.ui.view.
+ * in package org.eclipse.rse.ui.view.
*/
public Object getAdapter(Class adapterType)
{
diff --git a/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/subsystems/RemoteFileChildrenContentsType.java b/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/subsystems/RemoteFileChildrenContentsType.java
index dd40e644744..dfda594be2f 100644
--- a/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/subsystems/RemoteFileChildrenContentsType.java
+++ b/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/subsystems/RemoteFileChildrenContentsType.java
@@ -32,7 +32,7 @@ public class RemoteFileChildrenContentsType implements ISystemContentsType
}
/* (non-Javadoc)
- * @see com.ibm.etools.systems.subsystems.IRemoteContentsType#getType()
+ * @see org.eclipse.rse.model.ISystemContentsType#getType()
*/
public String getType()
{
@@ -40,7 +40,7 @@ public class RemoteFileChildrenContentsType implements ISystemContentsType
}
/* (non-Javadoc)
- * @see com.ibm.etools.systems.subsystems.IRemoteContentsType#isPersistent()
+ * @see org.eclipse.rse.model.ISystemContentsType#isPersistent()
*/
public boolean isPersistent()
{
diff --git a/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/subsystems/RemoteFileSubSystem.java b/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/subsystems/RemoteFileSubSystem.java
index a9a69aaee88..052d0bcebf8 100644
--- a/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/subsystems/RemoteFileSubSystem.java
+++ b/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/subsystems/RemoteFileSubSystem.java
@@ -17,7 +17,6 @@
package org.eclipse.rse.subsystems.files.core.subsystems;
// copy all the following imports to your child class...
// remote system framework packages...
-//import com.ibm.etools.systems.subsystems.impl.*;
import java.io.BufferedReader;
import java.io.DataInputStream;
diff --git a/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/subsystems/RemoteFolderChildrenContentsType.java b/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/subsystems/RemoteFolderChildrenContentsType.java
index 33378ef0f0f..6d80aee2cdf 100644
--- a/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/subsystems/RemoteFolderChildrenContentsType.java
+++ b/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/subsystems/RemoteFolderChildrenContentsType.java
@@ -32,7 +32,7 @@ public class RemoteFolderChildrenContentsType implements ISystemContentsType
}
/* (non-Javadoc)
- * @see com.ibm.etools.systems.subsystems.IRemoteContentsType#getType()
+ * @see org.eclipse.rse.model.ISystemContentsType#getType()
*/
public String getType()
{
@@ -40,7 +40,7 @@ public class RemoteFolderChildrenContentsType implements ISystemContentsType
}
/* (non-Javadoc)
- * @see com.ibm.etools.systems.subsystems.IRemoteContentsType#isPersistent()
+ * @see org.eclipse.rse.model.ISystemContentsType#isPersistent()
*/
public boolean isPersistent()
{
diff --git a/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/subsystems/RemoteSearchResultsContentsType.java b/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/subsystems/RemoteSearchResultsContentsType.java
index a5f1cc3071a..66d22d984f4 100644
--- a/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/subsystems/RemoteSearchResultsContentsType.java
+++ b/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/subsystems/RemoteSearchResultsContentsType.java
@@ -32,7 +32,7 @@ public class RemoteSearchResultsContentsType implements ISystemContentsType
}
/* (non-Javadoc)
- * @see com.ibm.etools.systems.subsystems.IRemoteContentsType#getType()
+ * @see org.eclipse.rse.model.ISystemContentsType#getType()
*/
public String getType()
{
@@ -40,7 +40,7 @@ public class RemoteSearchResultsContentsType implements ISystemContentsType
}
/* (non-Javadoc)
- * @see com.ibm.etools.systems.subsystems.IRemoteContentsType#isPersistent()
+ * @see org.eclipse.rse.model.ISystemContentsType#isPersistent()
*/
public boolean isPersistent()
{
diff --git a/rse/plugins/org.eclipse.rse.subsystems.files.ftp/src/org/eclipse/rse/subsystems/files/ftp/Activator.java b/rse/plugins/org.eclipse.rse.subsystems.files.ftp/src/org/eclipse/rse/subsystems/files/ftp/Activator.java
index 48d43883c51..5dc6d10ce63 100644
--- a/rse/plugins/org.eclipse.rse.subsystems.files.ftp/src/org/eclipse/rse/subsystems/files/ftp/Activator.java
+++ b/rse/plugins/org.eclipse.rse.subsystems.files.ftp/src/org/eclipse/rse/subsystems/files/ftp/Activator.java
@@ -68,6 +68,6 @@ public class Activator extends AbstractUIPlugin {
* @return the image descriptor
*/
public static ImageDescriptor getImageDescriptor(String path) {
- return AbstractUIPlugin.imageDescriptorFromPlugin("com.ibm.rse.subsystems.files.ftp", path);
+ return AbstractUIPlugin.imageDescriptorFromPlugin("org.eclipse.rse.subsystems.files.ftp", path);
}
}
\ No newline at end of file
diff --git a/rse/plugins/org.eclipse.rse.subsystems.files.local/src/org/eclipse/rse/subsystems/files/local/LocalFileSubSystemConfiguration.java b/rse/plugins/org.eclipse.rse.subsystems.files.local/src/org/eclipse/rse/subsystems/files/local/LocalFileSubSystemConfiguration.java
index 785a5494b25..2d84bc80aa3 100644
--- a/rse/plugins/org.eclipse.rse.subsystems.files.local/src/org/eclipse/rse/subsystems/files/local/LocalFileSubSystemConfiguration.java
+++ b/rse/plugins/org.eclipse.rse.subsystems.files.local/src/org/eclipse/rse/subsystems/files/local/LocalFileSubSystemConfiguration.java
@@ -63,7 +63,7 @@ public class LocalFileSubSystemConfiguration extends FileServiceSubSystemConfigu
}
/* (non-Javadoc)
- * @see com.ibm.etools.systems.subsystems.SubSystemFactory#isFactoryFor(java.lang.Class)
+ * @see org.eclipse.rse.core.subsystems.SubSystemConfiguration#isFactoryFor(java.lang.Class)
*/
public boolean isFactoryFor(Class subSystemType) {
boolean isFor = FileServiceSubSystem.class.equals(subSystemType);
@@ -71,7 +71,7 @@ public class LocalFileSubSystemConfiguration extends FileServiceSubSystemConfigu
}
/* (non-Javadoc)
- * @see com.ibm.etools.systems.files.subsystems.RemoteFileSubSystemFactory#supportsArchiveManagement()
+ * @see org.eclipse.rse.subsystems.files.core.subsystems.RemoteFileSubSystemConfiguration#supportsArchiveManagement()
*/
public boolean supportsArchiveManagement() {
return true;
@@ -166,21 +166,21 @@ public class LocalFileSubSystemConfiguration extends FileServiceSubSystemConfigu
/* (non-Javadoc)
- * @see com.ibm.etools.systems.files.subsystems.RemoteFileSubSystemFactory#supportsSearch()
+ * @see org.eclipse.rse.subsystems.files.core.subsystems.RemoteFileSubSystemConfiguration#supportsSearch()
*/
public boolean supportsSearch() {
return true;
}
/* (non-Javadoc)
- * @see com.ibm.etools.systems.files.subsystems.RemoteFileSubSystemFactory#supportsEnvironmentVariablesPropertyPage()
+ * @see org.eclipse.rse.subsystems.files.core.subsystems.RemoteFileSubSystemConfiguration#supportsEnvironmentVariablesPropertyPage()
*/
public boolean supportsEnvironmentVariablesPropertyPage() {
return false;
}
/* (non-Javadoc)
- * @see com.ibm.etools.systems.subsystems.SubSystemFactory#supportsFilters()
+ * @see org.eclipse.rse.core.subsystems.SubSystemConfiguration#supportsFilters()
*/
public boolean supportsFilters() {
return true;
diff --git a/rse/plugins/org.eclipse.rse.subsystems.files.local/src/org/eclipse/rse/subsystems/files/local/LocalJavaLanguageUtility.java b/rse/plugins/org.eclipse.rse.subsystems.files.local/src/org/eclipse/rse/subsystems/files/local/LocalJavaLanguageUtility.java
index 2fe2bb143b5..f1a05ba89dd 100644
--- a/rse/plugins/org.eclipse.rse.subsystems.files.local/src/org/eclipse/rse/subsystems/files/local/LocalJavaLanguageUtility.java
+++ b/rse/plugins/org.eclipse.rse.subsystems.files.local/src/org/eclipse/rse/subsystems/files/local/LocalJavaLanguageUtility.java
@@ -42,7 +42,7 @@ public class LocalJavaLanguageUtility extends AbstractJavaLanguageUtility {
/**
* The given remote file must be an instance of LocalFileImpl
.
- * @see com.ibm.etools.systems.subsystems.util.IJavaLanguageUtility#getQualifiedClassName(com.ibm.etools.systems.subsystems.IRemoteFile)
+ * @see org.eclipse.rse.internal.subsystems.files.IJavaLanguageUtility#getQualifiedClassName(org.eclipse.rse.subsystems.files.core.subsystems.IRemoteFile)
*/
public String getQualifiedClassName(IRemoteFile remoteFile) {
diff --git a/rse/plugins/org.eclipse.rse.subsystems.files.local/src/org/eclipse/rse/subsystems/files/local/LocalLanguageUtilityFactory.java b/rse/plugins/org.eclipse.rse.subsystems.files.local/src/org/eclipse/rse/subsystems/files/local/LocalLanguageUtilityFactory.java
index 41806b3d8b4..321f13601cd 100644
--- a/rse/plugins/org.eclipse.rse.subsystems.files.local/src/org/eclipse/rse/subsystems/files/local/LocalLanguageUtilityFactory.java
+++ b/rse/plugins/org.eclipse.rse.subsystems.files.local/src/org/eclipse/rse/subsystems/files/local/LocalLanguageUtilityFactory.java
@@ -65,7 +65,7 @@ public class LocalLanguageUtilityFactory extends AbstractLanguageUtilityFactory
}
/**
- * @see com.ibm.etools.systems.subsystems.util.ILanguageUtilityFactory#getUtility(java.lang.String)
+ * @see org.eclipse.rse.internal.subsystems.files.core.ILanguageUtilityFactory#getUtility(java.lang.String)
*/
public ILanguageUtility getUtility(String language) {
diff --git a/rse/plugins/org.eclipse.rse.subsystems.files.local/src/org/eclipse/rse/subsystems/files/local/model/LocalVirtualFile.java b/rse/plugins/org.eclipse.rse.subsystems.files.local/src/org/eclipse/rse/subsystems/files/local/model/LocalVirtualFile.java
index ff00503bdf4..be2aa816c8d 100644
--- a/rse/plugins/org.eclipse.rse.subsystems.files.local/src/org/eclipse/rse/subsystems/files/local/model/LocalVirtualFile.java
+++ b/rse/plugins/org.eclipse.rse.subsystems.files.local/src/org/eclipse/rse/subsystems/files/local/model/LocalVirtualFile.java
@@ -127,7 +127,7 @@ public class LocalVirtualFile extends LocalFile implements IVirtualRemoteFile
}
/* (non-Javadoc)
- * @see com.ibm.etools.systems.subsystems.IRemoteFile#getComment()
+ * @see org.eclipse.rse.subsystems.files.core.subsystems.IRemoteFile#getComment()
*/
public String getComment()
{
@@ -135,7 +135,7 @@ public class LocalVirtualFile extends LocalFile implements IVirtualRemoteFile
}
/* (non-Javadoc)
- * @see com.ibm.etools.systems.subsystems.IRemoteFile#getCompressedSize()
+ * @see org.eclipse.rse.subsystems.files.core.subsystems.IRemoteFile#getCompressedSize()
*/
public long getCompressedSize()
{
@@ -143,7 +143,7 @@ public class LocalVirtualFile extends LocalFile implements IVirtualRemoteFile
}
/* (non-Javadoc)
- * @see com.ibm.etools.systems.subsystems.IRemoteFile#getCompressionMethod()
+ * @see org.eclipse.rse.subsystems.files.core.subsystems.IRemoteFile#getCompressionMethod()
*/
public String getCompressionMethod()
{
@@ -151,7 +151,7 @@ public class LocalVirtualFile extends LocalFile implements IVirtualRemoteFile
}
/* (non-Javadoc)
- * @see com.ibm.etools.systems.subsystems.IRemoteFile#getCompressionRatio()
+ * @see org.eclipse.rse.subsystems.files.core.subsystems.IRemoteFile#getCompressionRatio()
*/
public double getCompressionRatio()
{
diff --git a/rse/plugins/org.eclipse.rse.subsystems.processes.core/src/org/eclipse/rse/subsystems/processes/core/subsystem/impl/RemoteProcessImpl.java b/rse/plugins/org.eclipse.rse.subsystems.processes.core/src/org/eclipse/rse/subsystems/processes/core/subsystem/impl/RemoteProcessImpl.java
index ae6412456bc..d0f543540e8 100644
--- a/rse/plugins/org.eclipse.rse.subsystems.processes.core/src/org/eclipse/rse/subsystems/processes/core/subsystem/impl/RemoteProcessImpl.java
+++ b/rse/plugins/org.eclipse.rse.subsystems.processes.core/src/org/eclipse/rse/subsystems/processes/core/subsystem/impl/RemoteProcessImpl.java
@@ -48,7 +48,7 @@ public class RemoteProcessImpl implements IRemoteProcess, ISystemProcessRemoteCo
/**
* Constructor that takes a context object containing important information.
* @param context An object holding contextual information about this object
- * @see com.ibm.etools.systems.shells.subsystems.IRemoteProcessContext
+ * @see org.eclipse.rse.subsystems.processes.core.subsystem.IRemoteProcessContext
*/
public RemoteProcessImpl(IRemoteProcessContext context, IHostProcess process)
{
@@ -159,7 +159,7 @@ public class RemoteProcessImpl implements IRemoteProcess, ISystemProcessRemoteCo
}
/* (non-Javadoc)
- * @see com.ibm.etools.systems.processes.clientserver.IRemoteProcess#getPid()
+ * @see org.eclipse.rse.subsystems.processes.core.subsystem.IRemoteProcess#getPid()
*/
public long getPid()
{
@@ -167,7 +167,7 @@ public class RemoteProcessImpl implements IRemoteProcess, ISystemProcessRemoteCo
}
/* (non-Javadoc)
- * @see com.ibm.etools.systems.processes.clientserver.IRemoteProcess#getPPid()
+ * @see org.eclipse.rse.subsystems.processes.core.subsystem.IRemoteProcess#getPPid()
*/
public long getPPid()
{
@@ -175,7 +175,7 @@ public class RemoteProcessImpl implements IRemoteProcess, ISystemProcessRemoteCo
}
/* (non-Javadoc)
- * @see com.ibm.etools.systems.processes.clientserver.IRemoteProcess#getName()
+ * @see org.eclipse.rse.subsystems.processes.core.subsystem.IRemoteProcess#getName()
*/
public String getName()
{
@@ -183,7 +183,7 @@ public class RemoteProcessImpl implements IRemoteProcess, ISystemProcessRemoteCo
}
/* (non-Javadoc)
- * @see com.ibm.etools.systems.processes.clientserver.IRemoteProcess#getState()
+ * @see org.eclipse.rse.subsystems.processes.core.subsystem.IRemoteProcess#getState()
*/
public String getState()
{
@@ -191,7 +191,7 @@ public class RemoteProcessImpl implements IRemoteProcess, ISystemProcessRemoteCo
}
/* (non-Javadoc)
- * @see com.ibm.etools.systems.processes.clientserver.IRemoteProcess#getTgid()
+ * @see org.eclipse.rse.subsystems.processes.core.subsystem.IRemoteProcess#getTgid()
*/
public long getTgid()
{
@@ -199,7 +199,7 @@ public class RemoteProcessImpl implements IRemoteProcess, ISystemProcessRemoteCo
}
/* (non-Javadoc)
- * @see com.ibm.etools.systems.processes.clientserver.IRemoteProcess#getTracerPid()
+ * @see org.eclipse.rse.subsystems.processes.core.subsystem.IRemoteProcess#getTracerPid()
*/
public long getTracerPid()
{
@@ -207,7 +207,7 @@ public class RemoteProcessImpl implements IRemoteProcess, ISystemProcessRemoteCo
}
/* (non-Javadoc)
- * @see com.ibm.etools.systems.processes.clientserver.IRemoteProcess#getUid()
+ * @see org.eclipse.rse.subsystems.processes.core.subsystem.IRemoteProcess#getUid()
*/
public long getUid()
{
@@ -215,7 +215,7 @@ public class RemoteProcessImpl implements IRemoteProcess, ISystemProcessRemoteCo
}
/* (non-Javadoc)
- * @see com.ibm.etools.systems.processes.clientserver.IRemoteProcess#getUsername()
+ * @see org.eclipse.rse.subsystems.processes.core.subsystem.IRemoteProcess#getUsername()
*/
public String getUsername()
{
@@ -223,7 +223,7 @@ public class RemoteProcessImpl implements IRemoteProcess, ISystemProcessRemoteCo
}
/* (non-Javadoc)
- * @see com.ibm.etools.systems.processes.clientserver.IRemoteProcess#getGid()
+ * @see org.eclipse.rse.subsystems.processes.core.subsystem.IRemoteProcess#getGid()
*/
public long getGid()
{
@@ -231,7 +231,7 @@ public class RemoteProcessImpl implements IRemoteProcess, ISystemProcessRemoteCo
}
/* (non-Javadoc)
- * @see com.ibm.etools.systems.processes.clientserver.IRemoteProcess#isRoot()
+ * @see org.eclipse.rse.subsystems.processes.core.subsystem.IRemoteProcess#isRoot()
*/
public boolean isRoot()
{
@@ -239,7 +239,7 @@ public class RemoteProcessImpl implements IRemoteProcess, ISystemProcessRemoteCo
}
/* (non-Javadoc)
- * @see com.ibm.etools.systems.processes.clientserver.IRemoteProcess#getAllProperties()
+ * @see org.eclipse.rse.subsystems.processes.core.subsystem.IRemoteProcess#getAllProperties()
*/
public String getAllProperties()
{
@@ -247,7 +247,7 @@ public class RemoteProcessImpl implements IRemoteProcess, ISystemProcessRemoteCo
}
/* (non-Javadoc)
- * @see com.ibm.etools.systems.processes.clientserver.IRemoteProcess#getVmSizeInKB()
+ * @see org.eclipse.rse.subsystems.processes.core.subsystem.IRemoteProcess#getVmSizeInKB()
*/
public long getVmSizeInKB()
{
@@ -255,7 +255,7 @@ public class RemoteProcessImpl implements IRemoteProcess, ISystemProcessRemoteCo
}
/* (non-Javadoc)
- * @see com.ibm.etools.systems.processes.clientserver.IRemoteProcess#getVmRSSInKB()
+ * @see org.eclipse.rse.subsystems.processes.core.subsystem.IRemoteProcess#getVmRSSInKB()
*/
public long getVmRSSInKB()
{
@@ -263,7 +263,7 @@ public class RemoteProcessImpl implements IRemoteProcess, ISystemProcessRemoteCo
}
/* (non-Javadoc)
- * @see com.ibm.etools.systems.processes.clientserver.IRemoteProcess#getLabel()
+ * @see org.eclipse.rse.subsystems.processes.core.subsystem.IRemoteProcess#getLabel()
*/
public String getLabel()
{
diff --git a/rse/plugins/org.eclipse.rse.subsystems.shells.dstore/src/org/eclipse/rse/subsystems/shells/dstore/DStoreShellSubSystemConfiguration.java b/rse/plugins/org.eclipse.rse.subsystems.shells.dstore/src/org/eclipse/rse/subsystems/shells/dstore/DStoreShellSubSystemConfiguration.java
index 7dff95aa6a2..28adeb33215 100644
--- a/rse/plugins/org.eclipse.rse.subsystems.shells.dstore/src/org/eclipse/rse/subsystems/shells/dstore/DStoreShellSubSystemConfiguration.java
+++ b/rse/plugins/org.eclipse.rse.subsystems.shells.dstore/src/org/eclipse/rse/subsystems/shells/dstore/DStoreShellSubSystemConfiguration.java
@@ -46,7 +46,7 @@ public class DStoreShellSubSystemConfiguration extends ShellServiceSubSystemConf
}
/* (non-Javadoc)
- * @see com.ibm.etools.systems.subsystems.SubSystemFactory#isFactoryFor(java.lang.Class)
+ * @see org.eclipse.rse.core.subsystems.SubSystemConfiguration#isFactoryFor(java.lang.Class)
*/
public boolean isFactoryFor(Class subSystemType) {
boolean isFor = ShellServiceSubSystem.class.equals(subSystemType);
@@ -69,7 +69,7 @@ public class DStoreShellSubSystemConfiguration extends ShellServiceSubSystemConf
/* (non-Javadoc)
- * @see com.ibm.etools.systems.subsystems.SubSystemFactory#supportsFilters()
+ * @see org.eclipse.rse.core.subsystems.SubSystemConfiguration#supportsFilters()
*/
public boolean supportsFilters() {
return false;
diff --git a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/internal/ui/view/SystemView.java b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/internal/ui/view/SystemView.java
index f5ecc234e9a..72100801195 100644
--- a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/internal/ui/view/SystemView.java
+++ b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/internal/ui/view/SystemView.java
@@ -43,11 +43,15 @@ import org.eclipse.jface.viewers.ISelectionChangedListener;
import org.eclipse.jface.viewers.ISelectionProvider;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.viewers.ITreeContentProvider;
+import org.eclipse.jface.viewers.ITreePathContentProvider;
import org.eclipse.jface.viewers.ITreeViewerListener;
import org.eclipse.jface.viewers.SelectionChangedEvent;
import org.eclipse.jface.viewers.StructuredSelection;
import org.eclipse.jface.viewers.TreeExpansionEvent;
+import org.eclipse.jface.viewers.TreePath;
+import org.eclipse.jface.viewers.TreePathViewerSorter;
import org.eclipse.jface.viewers.TreeViewer;
+import org.eclipse.jface.viewers.ViewerComparator;
import org.eclipse.jface.viewers.ViewerFilter;
import org.eclipse.jface.window.SameShellProvider;
import org.eclipse.rse.core.SystemAdapterHelpers;
@@ -5886,4 +5890,96 @@ public class SystemView extends TreeViewer implements ISystemTree,
_setList.add(newSet);
return newSet;
}
+
+
+ protected void internalAdd(Widget widget, Object parentElementOrTreePath, Object[] childElements) {
+ Object parent;
+ TreePath path;
+ if (parentElementOrTreePath instanceof TreePath) {
+ path = (TreePath) parentElementOrTreePath;
+ parent = path.getLastSegment();
+ } else {
+ parent = parentElementOrTreePath;
+ path = null;
+ }
+
+ // optimization!
+ // if the widget is not expanded we just invalidate the subtree
+ if (widget instanceof Item) {
+ Item ti = (Item) widget;
+ if (!getExpanded(ti)) {
+ boolean needDummy = isExpandable(ti, path, parent);
+ boolean haveDummy = false;
+ // remove all children
+ Item[] items = getItems(ti);
+ for (int i = 0; i < items.length; i++) {
+ if (items[i].getData() != null) {
+ disassociate(items[i]);
+ items[i].dispose();
+ } else {
+ if (needDummy && !haveDummy) {
+ haveDummy = true;
+ } else {
+ items[i].dispose();
+ }
+ }
+ }
+ // append a dummy if necessary
+ if (needDummy && !haveDummy) {
+ newItem(ti, SWT.NULL, -1);
+ }
+ return;
+ }
+ }
+
+ if (childElements.length > 0) {
+ // TODO: Add filtering back?
+ Object[] filtered = filter(parentElementOrTreePath, childElements);
+
+ for (int i = 0; i < filtered.length; i++)
+ {
+ createTreeItem(widget, filtered[i], i);
+ //createAddedElements(widget, filtered);
+ }
+ }
+ }
+
+ /**
+ * Return whether the given element is expandable.
+ * @param item the tree item for the element
+ * @param parentPath the parent path if it is knwon or null
if it needs to be determines
+ * @param element the element
+ * @return whether the given element is expandable
+ */
+ private boolean isExpandable(Item item, TreePath parentPath, Object element) {
+ return isExpandable(element);
+ }
+
+ /**
+ * Filter the children elements.
+ * @param parentElementOrTreePath the parent element or path
+ * @param elements the child elements
+ * @return the filter list of children
+ */
+ private Object[] filter(Object parentElementOrTreePath, Object[] elements) {
+ ViewerFilter[] filters = getFilters();
+ if (filters != null) {
+ ArrayList filtered = new ArrayList(elements.length);
+ for (int i = 0; i < elements.length; i++) {
+ boolean add = true;
+ for (int j = 0; j < filters.length; j++) {
+ add = filters[j].select(this, parentElementOrTreePath, elements[i]);
+ if (!add) {
+ break;
+ }
+ }
+ if (add) {
+ filtered.add(elements[i]);
+ }
+ }
+ return filtered.toArray();
+ }
+ return elements;
+ }
+
}
\ No newline at end of file
diff --git a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/Mnemonics.java b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/Mnemonics.java
index ba1c611d842..95624f0c38e 100644
--- a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/Mnemonics.java
+++ b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/Mnemonics.java
@@ -396,8 +396,7 @@ public class Mnemonics
Control children[] = parent.getChildren();
if (children != null)
{
- //com.ibm.etools.systems.SystemPlugin.getDefault().logMessage("setMnemonics: child count = " + children.length);
- Control currChild = null;
+ Control currChild = null;
boolean bSetText = false;
for (int idx=0; idx < children.length; idx++)
{
diff --git a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/actions/SystemConnectAllSubSystemsAction.java b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/actions/SystemConnectAllSubSystemsAction.java
index 567a71739b9..948013201b4 100644
--- a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/actions/SystemConnectAllSubSystemsAction.java
+++ b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/actions/SystemConnectAllSubSystemsAction.java
@@ -29,8 +29,6 @@ import org.eclipse.rse.ui.RSEUIPlugin;
import org.eclipse.rse.ui.SystemResources;
import org.eclipse.swt.widgets.Shell;
-
-//import com.ibm.etools.systems.*;
/**
* This is the action for connecting all subsystems for a given connection.
*/
diff --git a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/actions/SystemDisconnectAllSubSystemsAction.java b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/actions/SystemDisconnectAllSubSystemsAction.java
index c61643b91a9..0eebddfa2c8 100644
--- a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/actions/SystemDisconnectAllSubSystemsAction.java
+++ b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/actions/SystemDisconnectAllSubSystemsAction.java
@@ -25,7 +25,6 @@ import org.eclipse.rse.ui.SystemResources;
import org.eclipse.swt.widgets.Shell;
-//import com.ibm.etools.systems.*;
/**
* This is the action forconnecting all subsystems for a given connection.
*/
diff --git a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/actions/SystemShowPreferencesPageAction.java b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/actions/SystemShowPreferencesPageAction.java
index 02bdef17786..6842440c156 100644
--- a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/actions/SystemShowPreferencesPageAction.java
+++ b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/actions/SystemShowPreferencesPageAction.java
@@ -15,8 +15,7 @@
********************************************************************************/
package org.eclipse.rse.ui.actions;
-//import com.ibm.etools.systems.model.*;
-//import com.ibm.etools.systems.model.impl.*;
+
import java.util.Iterator;
import java.util.List;
diff --git a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/actions/SystemViewExpandToBaseAction.java b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/actions/SystemViewExpandToBaseAction.java
index 635156636bb..5231d71a5d0 100644
--- a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/actions/SystemViewExpandToBaseAction.java
+++ b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/actions/SystemViewExpandToBaseAction.java
@@ -22,7 +22,6 @@ import org.eclipse.rse.ui.view.SystemView;
import org.eclipse.swt.widgets.Shell;
-//import com.ibm.etools.systems.subsystems.*;
/**
* Base class for Expand To actions on a container
diff --git a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/dialogs/SystemSelectConnectionDialog.java b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/dialogs/SystemSelectConnectionDialog.java
index 7ed65173c15..defc8bfa13f 100644
--- a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/dialogs/SystemSelectConnectionDialog.java
+++ b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/dialogs/SystemSelectConnectionDialog.java
@@ -60,9 +60,7 @@ import org.eclipse.swt.widgets.Shell;
*
null
if it needs to be determines
+ * @param element the element
+ * @return whether the given element is expandable
+ */
+ private boolean isExpandable(Item item, TreePath parentPath, Object element) {
+ return isExpandable(element);
+ }
+
+ /**
+ * Filter the children elements.
+ * @param parentElementOrTreePath the parent element or path
+ * @param elements the child elements
+ * @return the filter list of children
+ */
+ private Object[] filter(Object parentElementOrTreePath, Object[] elements) {
+ ViewerFilter[] filters = getFilters();
+ if (filters != null) {
+ ArrayList filtered = new ArrayList(elements.length);
+ for (int i = 0; i < elements.length; i++) {
+ boolean add = true;
+ for (int j = 0; j < filters.length; j++) {
+ add = filters[j].select(this, parentElementOrTreePath, elements[i]);
+ if (!add) {
+ break;
+ }
+ }
+ if (add) {
+ filtered.add(elements[i]);
+ }
+ }
+ return filtered.toArray();
+ }
+ return elements;
+ }
+
}
\ No newline at end of file
diff --git a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/view/monitor/MonitorViewWorkbook.java b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/view/monitor/MonitorViewWorkbook.java
index 928ebcf9196..b06e472b454 100644
--- a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/view/monitor/MonitorViewWorkbook.java
+++ b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/view/monitor/MonitorViewWorkbook.java
@@ -31,7 +31,6 @@ import org.eclipse.swt.widgets.Composite;
/**
* This is the desktop view wrapper of the System View viewer.
- * ViewPart is from com.ibm.itp.ui.support.parts
*/
public class MonitorViewWorkbook extends Composite
{
diff --git a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/view/monitor/SystemMonitorViewPart.java b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/view/monitor/SystemMonitorViewPart.java
index 081785839ad..cff239082fe 100644
--- a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/view/monitor/SystemMonitorViewPart.java
+++ b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/view/monitor/SystemMonitorViewPart.java
@@ -79,7 +79,6 @@ import org.eclipse.ui.views.properties.IPropertyDescriptor;
/**
* This is the desktop view wrapper of the System View viewer.
- * ViewPart is from com.ibm.itp.ui.support.parts
*/
public class SystemMonitorViewPart
extends ViewPart
diff --git a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/view/scratchpad/SystemScratchpadView.java b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/view/scratchpad/SystemScratchpadView.java
index 4070c4ff093..eb6a5f627ea 100644
--- a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/view/scratchpad/SystemScratchpadView.java
+++ b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/view/scratchpad/SystemScratchpadView.java
@@ -110,8 +110,6 @@ import org.eclipse.ui.part.PluginTransfer;
* This subclass of the standard JFace tabletree viewer is used to
* show a generic tabletree view of the selected object
* - * - * TableViewer comes from com.ibm.jface.viewer */ public class SystemScratchpadView // TODO change TreeViewer to ScratchpadViewer when Eclipse fixes SWT viewer @@ -895,7 +893,6 @@ implements IMenuListener, ISystemDeleteTarget, ISystemRenameTarget, ISystemSelec for (int idx = 0; idx < deleted.length; idx++) deleted[idx] = deletedVector.elementAt(idx); if (_selectionIsRemoteObject) - //sr.fireEvent(new com.ibm.etools.systems.model.impl.SystemResourceChangeEvent(deleted, ISystemResourceChangeEvent.EVENT_DELETE_REMOTE_MANY, null)); sr.fireRemoteResourceChangeEvent(ISystemRemoteChangeEvents.SYSTEM_REMOTE_RESOURCE_DELETED, deletedVector, null, null, null, this); else sr.fireEvent(new org.eclipse.rse.model.SystemResourceChangeEvent(deleted, ISystemResourceChangeEvents.EVENT_DELETE_MANY, getInput())); diff --git a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/view/search/SystemSearchCopyToClipboardAction.java b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/view/search/SystemSearchCopyToClipboardAction.java index 0089fc6f55c..3c1c99cb3a3 100644 --- a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/view/search/SystemSearchCopyToClipboardAction.java +++ b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/view/search/SystemSearchCopyToClipboardAction.java @@ -39,7 +39,7 @@ public class SystemSearchCopyToClipboardAction extends SystemCopyToClipboardActi /** * Returns the string "\t" if the object is a remote search result, otherwise returns the super class * implementation. - * @see com.ibm.etools.systems.files.ui.actions.SystemCopyToClipboardAction#getTextTransferPrepend(java.lang.Object, org.eclipse.rse.ui.view.ISystemViewElementAdapter) + * @see org.eclipse.rse.ui.actions.SystemCopyToClipboardAction#getTextTransferPrepend(java.lang.Object, org.eclipse.rse.ui.view.ISystemViewElementAdapter) */ protected String getTextTransferPrepend(Object obj, ISystemViewElementAdapter adapter) { /** shouldn't be coupled with search (files ui) diff --git a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/view/team/SystemTeamViewInputProvider.java b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/view/team/SystemTeamViewInputProvider.java index 105b6a32cad..7881ac5be7c 100644 --- a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/view/team/SystemTeamViewInputProvider.java +++ b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/view/team/SystemTeamViewInputProvider.java @@ -93,7 +93,7 @@ public class SystemTeamViewInputProvider implements IAdaptable, ISystemViewInput } /* (non-Javadoc) - * @see org.eclipse.rse.ui.view.ISystemViewInputProvider#getConnectionChildren(com.ibm.etools.systems.model.SystemConnection) + * @see org.eclipse.rse.ui.view.ISystemViewInputProvider#getConnectionChildren(org.eclipse.rse.model.IHost) */ public Object[] getConnectionChildren(IHost selectedConnection) { @@ -102,7 +102,7 @@ public class SystemTeamViewInputProvider implements IAdaptable, ISystemViewInput } /* (non-Javadoc) - * @see org.eclipse.rse.ui.view.ISystemViewInputProvider#hasConnectionChildren(com.ibm.etools.systems.model.SystemConnection) + * @see org.eclipse.rse.ui.view.ISystemViewInputProvider#hasConnectionChildren(org.eclipse.rse.model.IHost) */ public boolean hasConnectionChildren(IHost selectedConnection) { diff --git a/rse/plugins/org.eclipse.rse.ui/filters/org/eclipse/rse/filters/SystemFilterReference.java b/rse/plugins/org.eclipse.rse.ui/filters/org/eclipse/rse/filters/SystemFilterReference.java index b9b9b97a93c..c0af18a6e21 100644 --- a/rse/plugins/org.eclipse.rse.ui/filters/org/eclipse/rse/filters/SystemFilterReference.java +++ b/rse/plugins/org.eclipse.rse.ui/filters/org/eclipse/rse/filters/SystemFilterReference.java @@ -415,7 +415,7 @@ public class SystemFilterReference extends SystemReferencingObject implements IA } /* (non-Javadoc) - * @see com.ibm.etools.systems.model.ISystemContainer#hasContents(com.ibm.etools.systems.model.ISystemContentsType) + * @see org.eclipse.rse.model.ISystemContainer#hasContents(org.eclipse.rse.model.ISystemContentsType) */ public boolean hasContents(ISystemContentsType contentsType) { @@ -426,7 +426,7 @@ public class SystemFilterReference extends SystemReferencingObject implements IA return false; } /* (non-Javadoc) - * @see com.ibm.etools.systems.model.ISystemContainer#getContents(com.ibm.etools.systems.model.ISystemContentsType) + * @see org.eclipse.rse.model.ISystemContainer#getContents(org.eclipse.rse.model.ISystemContentsType) */ public Object[] getContents(ISystemContentsType contentsType) { @@ -441,7 +441,7 @@ public class SystemFilterReference extends SystemReferencingObject implements IA } /* (non-Javadoc) - * @see com.ibm.etools.systems.model.ISystemContainer#isStale() + * @see org.eclipse.rse.model.ISystemContainer#isStale() */ public boolean isStale() { @@ -449,7 +449,7 @@ public class SystemFilterReference extends SystemReferencingObject implements IA } /* (non-Javadoc) - * @see com.ibm.etools.systems.model.ISystemContainer#markStale(boolean) + * @see org.eclipse.rse.model.ISystemContainer#markStale(boolean) */ public void markStale(boolean isStale) { @@ -457,7 +457,7 @@ public class SystemFilterReference extends SystemReferencingObject implements IA } /* (non-Javadoc) - * @see com.ibm.etools.systems.model.ISystemContainer#markStale(boolean) + * @see org.eclipse.rse.model.ISystemContainer#markStale(boolean) */ public void markStale(boolean isStale, boolean clearCache) { diff --git a/rse/plugins/org.eclipse.rse.ui/filters/org/eclipse/rse/internal/filters/SystemFilterPoolManager.java b/rse/plugins/org.eclipse.rse.ui/filters/org/eclipse/rse/internal/filters/SystemFilterPoolManager.java index eead5be78bd..e76128e96eb 100644 --- a/rse/plugins/org.eclipse.rse.ui/filters/org/eclipse/rse/internal/filters/SystemFilterPoolManager.java +++ b/rse/plugins/org.eclipse.rse.ui/filters/org/eclipse/rse/internal/filters/SystemFilterPoolManager.java @@ -92,9 +92,9 @@ import org.eclipse.rse.ui.RSEUIPlugin; * filter related activity through a single point like this, we can ensure that * all changes are saved to disk, and events are fired properly. *
- * The filter framework logs to a {@link com.ibm.etools.systems.logging.Logger Logger} file. + * The filter framework logs to a {@link org.eclipse.rse.logging.Logger Logger} file. * By default the log in the org.eclipse.rse.core plugin is used, but you can change this - * by calling {@link #setLogger(com.ibm.etools.systems.logging.Logger)}. + * by calling {@link #setLogger(org.eclipse.rse.logging.Logger)}. */ /** * @lastgen class SystemFilterPoolManagerImpl Impl implements SystemFilterPoolManager {} diff --git a/rse/plugins/org.eclipse.rse.ui/filters/org/eclipse/rse/internal/filters/SystemFilterPoolReferenceManager.java b/rse/plugins/org.eclipse.rse.ui/filters/org/eclipse/rse/internal/filters/SystemFilterPoolReferenceManager.java index a200d15bfea..8b9eba7a99a 100644 --- a/rse/plugins/org.eclipse.rse.ui/filters/org/eclipse/rse/internal/filters/SystemFilterPoolReferenceManager.java +++ b/rse/plugins/org.eclipse.rse.ui/filters/org/eclipse/rse/internal/filters/SystemFilterPoolReferenceManager.java @@ -956,9 +956,7 @@ public class SystemFilterPoolReferenceManager extends SystemPersistableReference { setSystemFilterPoolManagerProvider(relatedPoolMgrProvider); // sets poolMgrs = relatedManagers setProvider(provider); - //com.ibm.etools.systems.subsystems.SubSystem ss = (com.ibm.etools.systems.subsystems.SubSystem)provider; - //System.out.println("Inside resolveReferencesAfterRestore for subsys " +getName() + " in conn " + ss.getSystemProfile() + "." + ss.getSystemConnection()); - ISystemFilterPoolManager[] relatedManagers = getSystemFilterPoolManagers(); + ISystemFilterPoolManager[] relatedManagers = getSystemFilterPoolManagers(); if (relatedManagers != null) { Vector badRefs = new Vector(); diff --git a/rse/plugins/org.eclipse.rse.ui/model/org/eclipse/rse/model/SystemChildrenContentsType.java b/rse/plugins/org.eclipse.rse.ui/model/org/eclipse/rse/model/SystemChildrenContentsType.java index 8b44ec77c29..3fa0614e4ff 100644 --- a/rse/plugins/org.eclipse.rse.ui/model/org/eclipse/rse/model/SystemChildrenContentsType.java +++ b/rse/plugins/org.eclipse.rse.ui/model/org/eclipse/rse/model/SystemChildrenContentsType.java @@ -32,7 +32,7 @@ public class SystemChildrenContentsType implements ISystemContentsType } /* (non-Javadoc) - * @see com.ibm.etools.systems.subsystems.IRemoteContentsType#getType() + * @see org.eclipse.rse.model.IRemoteContentsType#getType() */ public String getType() { @@ -40,7 +40,7 @@ public class SystemChildrenContentsType implements ISystemContentsType } /* (non-Javadoc) - * @see com.ibm.etools.systems.subsystems.IRemoteContentsType#isPersistent() + * @see org.eclipse.rse.model.IRemoteContentsType#isPersistent() */ public boolean isPersistent() { diff --git a/rse/plugins/org.eclipse.rse.ui/model/org/eclipse/rse/model/SystemFilterStringContentsType.java b/rse/plugins/org.eclipse.rse.ui/model/org/eclipse/rse/model/SystemFilterStringContentsType.java index 8f33456fb13..9ad29d1672e 100644 --- a/rse/plugins/org.eclipse.rse.ui/model/org/eclipse/rse/model/SystemFilterStringContentsType.java +++ b/rse/plugins/org.eclipse.rse.ui/model/org/eclipse/rse/model/SystemFilterStringContentsType.java @@ -29,7 +29,7 @@ public class SystemFilterStringContentsType implements ISystemContentsType } /* (non-Javadoc) - * @see com.ibm.etools.systems.subsystems.IRemoteContentsType#getType() + * @see org.eclipse.rse.model.IRemoteContentsType#getType() */ public String getType() { @@ -37,7 +37,7 @@ public class SystemFilterStringContentsType implements ISystemContentsType } /* (non-Javadoc) - * @see com.ibm.etools.systems.subsystems.IRemoteContentsType#isPersistent() + * @see org.eclipse.rse.model.IRemoteContentsType#isPersistent() */ public boolean isPersistent() { diff --git a/rse/plugins/org.eclipse.rse.ui/subsystems/org/eclipse/rse/core/subsystems/RemoteChildrenContentsType.java b/rse/plugins/org.eclipse.rse.ui/subsystems/org/eclipse/rse/core/subsystems/RemoteChildrenContentsType.java index a86be63c2e1..60fbc21bea3 100644 --- a/rse/plugins/org.eclipse.rse.ui/subsystems/org/eclipse/rse/core/subsystems/RemoteChildrenContentsType.java +++ b/rse/plugins/org.eclipse.rse.ui/subsystems/org/eclipse/rse/core/subsystems/RemoteChildrenContentsType.java @@ -32,7 +32,7 @@ public class RemoteChildrenContentsType implements ISystemContentsType } /* (non-Javadoc) - * @see com.ibm.etools.systems.subsystems.IRemoteContentsType#getType() + * @see org.eclipse.rse.model.IRemoteContentsType#getType() */ public String getType() { @@ -40,7 +40,7 @@ public class RemoteChildrenContentsType implements ISystemContentsType } /* (non-Javadoc) - * @see com.ibm.etools.systems.subsystems.IRemoteContentsType#isPersistent() + * @see org.eclipse.rse.model.IRemoteContentsType#isPersistent() */ public boolean isPersistent() { diff --git a/rse/plugins/org.eclipse.rse.ui/subsystems/org/eclipse/rse/core/subsystems/SubSystem.java b/rse/plugins/org.eclipse.rse.ui/subsystems/org/eclipse/rse/core/subsystems/SubSystem.java index 82a29a7ec13..8cdf9465f10 100644 --- a/rse/plugins/org.eclipse.rse.ui/subsystems/org/eclipse/rse/core/subsystems/SubSystem.java +++ b/rse/plugins/org.eclipse.rse.ui/subsystems/org/eclipse/rse/core/subsystems/SubSystem.java @@ -68,7 +68,7 @@ import org.eclipse.ui.progress.WorkbenchJob; * This class is designed to be subclassed. Its role is three-fold: *
internalResolveFilterString
methods to
* populate the remote resources shown when the subsystem's filters are expanded. It might also involve overriding the inherited
* internalRunCommand
method if this subsystem supports running commands remotely... although typically such subsystems
@@ -669,7 +669,6 @@ public abstract class SubSystem extends RSEModelObject implements IAdaptable, IS
// System.out.println("ProfileName: " + profileName);
// System.out.println("ConnectionName: " + connectionName);
- // RESID_PERCONNECTION_FILTERPOOL = com.ibm.etools.systems.ui.perConnection.filterpool=Filter Pool for connection %1
// String name = SystemResources.RESID_PERCONNECTION_FILTERPOOL;
//
// StringBuffer profileNameBuffer = new StringBuffer(profileName.toLowerCase());
@@ -3272,14 +3271,14 @@ public abstract class SubSystem extends RSEModelObject implements IAdaptable, IS
return null;
}
/* (non-Javadoc)
- * @see com.ibm.etools.systems.subsystems.SubSystem#isConnectionError()
+ * @see org.eclipse.rse.core.subsystems.SubSystem#isConnectionError()
*/
public boolean isConnectionError()
{
return _connectionError;
}
/* (non-Javadoc)
- * @see com.ibm.etools.systems.subsystems.SubSystem#setConnectionError(boolean)
+ * @see org.eclipse.rse.core.subsystems.SubSystem#setConnectionError(boolean)
*/
public void setConnectionError(boolean error)
{
diff --git a/rse/plugins/org.eclipse.rse.ui/subsystems/org/eclipse/rse/core/subsystems/SubSystemConfiguration.java b/rse/plugins/org.eclipse.rse.ui/subsystems/org/eclipse/rse/core/subsystems/SubSystemConfiguration.java
index 2030f32eec9..09034645e1b 100644
--- a/rse/plugins/org.eclipse.rse.ui/subsystems/org/eclipse/rse/core/subsystems/SubSystemConfiguration.java
+++ b/rse/plugins/org.eclipse.rse.ui/subsystems/org/eclipse/rse/core/subsystems/SubSystemConfiguration.java
@@ -619,22 +619,6 @@ public abstract class SubSystemConfiguration implements ISubSystemConfiguration
RSEUIPlugin.getTheSystemRegistry().fireEvent(new org.eclipse.rse.model.SystemResourceChangeEvent(ss, ISystemResourceChangeEvents.EVENT_CHANGE_CHILDREN, ss));
}
}
- /*
- * If we support filters, should we show filter strings in the remote system explorer?
- * This is to set it after the user changes it in the user preferences. It may require
- * refreshing the current view.
- *
- public void setShowFilterStrings(boolean show)
- {
- SubSystem[] subsystems = getSubSystems(false); // false=> lazy get; don't restore from disk if not already
- for (int idx=0; idx