From 083f73ebaf288e34c3fe0cd958a0f720ecb04db6 Mon Sep 17 00:00:00 2001 From: Martin Oberhuber < martin.oberhuber@windriver.com> Date: Wed, 21 Nov 2007 19:56:26 +0000 Subject: [PATCH] Update Javadoc links for IFileService#FILE_TYPE_* constants --- .../files/core/subsystems/IRemoteFileSubSystem.java | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/subsystems/IRemoteFileSubSystem.java b/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/subsystems/IRemoteFileSubSystem.java index a650a2e969a..6adf163f5a2 100644 --- a/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/subsystems/IRemoteFileSubSystem.java +++ b/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/subsystems/IRemoteFileSubSystem.java @@ -29,6 +29,7 @@ import java.net.InetAddress; import org.eclipse.core.runtime.IProgressMonitor; import org.eclipse.rse.core.subsystems.ISubSystem; import org.eclipse.rse.services.clientserver.messages.SystemMessageException; +import org.eclipse.rse.services.files.IFileService; import org.eclipse.rse.services.files.RemoteFileException; import org.eclipse.rse.services.search.IHostSearchResultConfiguration; import org.eclipse.rse.subsystems.files.core.ILanguageUtilityFactory; @@ -151,8 +152,10 @@ public interface IRemoteFileSubSystem extends ISubSystem { * @param parents The parent folders to list folders and files in * @param fileNameFilters The name patterns to subset the file list by, or null to return all files. * There should be exactly one fileNameFilter per parent. - * @param fileType - indicates whether to query files, folders, both or some other type. This fileType is used for each parent query. - * For the default list of available file types see IFileServiceContants + * @param fileType - indicates whether to query files, folders, both or some other type. + * Available file types include {@link IFileService#FILE_TYPE_FILES}, + * {@link IFileService#FILE_TYPE_FOLDERS}, and + * {@link IFileService#FILE_TYPE_FILES_AND_FOLDERS}. * @param monitor the progress monitor */ public IRemoteFile[] listMultiple(IRemoteFile[] parents, String[] fileNameFilters, int fileType, IProgressMonitor monitor) throws SystemMessageException; @@ -171,7 +174,9 @@ public interface IRemoteFileSubSystem extends ISubSystem { * * @param parent The parent folder to list folders and files in * @param fileType - indicates whether to query files, folders, both or some other type. - * For the default list of available file types see IFileServiceContants + * Available file types include {@link IFileService#FILE_TYPE_FILES}, + * {@link IFileService#FILE_TYPE_FOLDERS}, and + * {@link IFileService#FILE_TYPE_FILES_AND_FOLDERS}. * @param monitor the progress monitor */ public IRemoteFile[] list(IRemoteFile parent, int fileType, IProgressMonitor monitor) throws SystemMessageException;