diff --git a/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/resources/ISystemMountPathMapper.java b/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/resources/ISystemMountPathMapper.java index 491113263d1..d33a5a28e99 100644 --- a/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/resources/ISystemMountPathMapper.java +++ b/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/resources/ISystemMountPathMapper.java @@ -102,6 +102,7 @@ public interface ISystemMountPathMapper * @param subsystem the subsystem used to retrieve files * * @return the priority, where the lower in value, the higher the priority. + * @since 3.0 */ int getPriority(String hostname, String remotePath, IRemoteFileSubSystem subsystem); } diff --git a/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/resources/UniversalFileTransferUtility.java b/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/resources/UniversalFileTransferUtility.java index 0d1cb85f714..8f4147f8d80 100644 --- a/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/resources/UniversalFileTransferUtility.java +++ b/rse/plugins/org.eclipse.rse.files.ui/src/org/eclipse/rse/files/ui/resources/UniversalFileTransferUtility.java @@ -583,6 +583,7 @@ public class UniversalFileTransferUtility * @param remoteSet the objects which are being copied * @param monitor a progress monitor * @return the temporary objects that was created after the download + * @since 3.0 */ public static SystemWorkspaceResourceSet downloadResourcesToWorkspace(SystemRemoteResourceSet remoteSet, IProgressMonitor monitor) { @@ -830,6 +831,7 @@ public class UniversalFileTransferUtility * @param srcFileOrFolder the file to copy. * @param monitor the progress monitor. * @return the resulting local replica. + * @since 3.0 */ protected static IFile downloadFileToWorkspace(File srcFileOrFolder, IProgressMonitor monitor) { @@ -2496,6 +2498,9 @@ public class UniversalFileTransferUtility { return checkForCollision(existingFiles, targetFolder, oldName, oldPath, null); } + /** + * @since 3.0 + */ protected static RenameStatus checkForCollision(SystemRemoteResourceSet existingFiles, IRemoteFile targetFolder, String oldName, String oldPath, List NamesInUse) { String newName = oldName; diff --git a/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/model/RemoteFileUtility.java b/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/model/RemoteFileUtility.java index b165d4cc711..ddac9857f5f 100644 --- a/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/model/RemoteFileUtility.java +++ b/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/model/RemoteFileUtility.java @@ -106,6 +106,7 @@ public class RemoteFileUtility /** * Return the global SystemFileTransferModeRegistry. * @return the global SystemFileTransferModeRegistry. + * @since 3.0 */ public static ISystemFileTransferModeRegistry getSystemFileTransferModeRegistry() { diff --git a/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/subsystems/IRemoteFile.java b/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/subsystems/IRemoteFile.java index 0eaf9ba3dde..7c7b7245b62 100644 --- a/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/subsystems/IRemoteFile.java +++ b/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/subsystems/IRemoteFile.java @@ -339,6 +339,7 @@ public interface IRemoteFile extends IRemoteContainer, IRemotePropertyHolder, IS /** * Returns the permissions for this file if they exist * @return the permissions + * @since 3.0 */ public IHostFilePermissions getPermissions(); 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 ed69e6b3a6d..9add09b00c1 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 @@ -120,6 +120,7 @@ public interface IRemoteFileSubSystem extends ISubSystem { * should be exactly one fileType specified per parent. * For the default list of available file types see IFileServiceContants * @param monitor the progress monitor + * @since 3.0 */ public IRemoteFile[] listMultiple(IRemoteFile[] parents, int[] fileTypes, IProgressMonitor monitor) throws SystemMessageException; diff --git a/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/subsystems/IRemoteSearchConstants.java b/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/subsystems/IRemoteSearchConstants.java index fd3281edfe1..5b6c5d09727 100644 --- a/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/subsystems/IRemoteSearchConstants.java +++ b/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/subsystems/IRemoteSearchConstants.java @@ -30,6 +30,7 @@ public interface IRemoteSearchConstants { /** * Status indicating configuration has been cancelled, 2. + * @since 3.0 */ public static final int CANCELED = 2;