RSE
Release 1.0

Uses of Class
org.eclipse.rse.services.files.RemoteFileIOException

Packages that use RemoteFileIOException
org.eclipse.rse.files.ui.resources   
org.eclipse.rse.services.files   
org.eclipse.rse.subsystems.files.core.servicesubsystem   
org.eclipse.rse.subsystems.files.core.subsystems   
 

Uses of RemoteFileIOException in org.eclipse.rse.files.ui.resources
 

Methods in org.eclipse.rse.files.ui.resources that throw RemoteFileIOException
static void UniversalFileTransferUtility.transferProperties(IResource source, IRemoteFile target, IProgressMonitor monitor)
           
protected static void UniversalFileTransferUtility.cleanup(IRemoteFile arc1, File arc2)
           
 

Uses of RemoteFileIOException in org.eclipse.rse.services.files
 

Subclasses of RemoteFileIOException in org.eclipse.rse.services.files
 class RemoteFileCancelledException
          Exception thrown when attempting an operation and it fails for IO reasons, such as the file is read-only.
 

Uses of RemoteFileIOException in org.eclipse.rse.subsystems.files.core.servicesubsystem
 

Methods in org.eclipse.rse.subsystems.files.core.servicesubsystem that throw RemoteFileIOException
 void FileServiceSubSystem.upload(String source, String srcEncoding, String remotePath, String rmtEncoding, IProgressMonitor monitor)
          Put the local copy of the remote file back to the remote location.
 void FileServiceSubSystem.upload(String source, IRemoteFile destination, String encoding, IProgressMonitor monitor)
          Put the local copy of the remote file back to the remote location.
 void FileServiceSubSystem.upload(InputStream stream, long totalBytes, IRemoteFile destination, String encoding, IProgressMonitor monitor)
           
 boolean FileServiceSubSystem.copy(IRemoteFile sourceFolderOrFile, IRemoteFile targetFolder, String newName, IProgressMonitor monitor)
           
 boolean FileServiceSubSystem.copyBatch(IRemoteFile[] sourceFolderOrFiles, IRemoteFile targetFolder, IProgressMonitor monitor)
           
 IRemoteFile FileServiceSubSystem.createFile(IRemoteFile fileToCreate)
           
 IRemoteFile FileServiceSubSystem.createFolder(IRemoteFile folderToCreate)
           
 IRemoteFile FileServiceSubSystem.createFolders(IRemoteFile folderToCreate)
           
 boolean FileServiceSubSystem.delete(IRemoteFile folderOrFile, IProgressMonitor monitor)
           
 boolean FileServiceSubSystem.deleteBatch(IRemoteFile[] folderOrFiles, IProgressMonitor monitor)
           
 boolean FileServiceSubSystem.rename(IRemoteFile folderOrFile, String newName)
           
 boolean FileServiceSubSystem.move(IRemoteFile sourceFolderOrFile, IRemoteFile targetFolder, String newName, IProgressMonitor monitor)
           
 boolean FileServiceSubSystem.setLastModified(IRemoteFile folderOrFile, long newDate)
           
 boolean FileServiceSubSystem.setReadOnly(IRemoteFile folderOrFile)
           
 

Uses of RemoteFileIOException in org.eclipse.rse.subsystems.files.core.subsystems
 

Methods in org.eclipse.rse.subsystems.files.core.subsystems that throw RemoteFileIOException
 void RemoteFileSubSystem.download(IRemoteFile source, String destination, IProgressMonitor monitor)
          Get the remote file and save it locally.
 void RemoteFileSubSystem.downloadUTF8(IRemoteFile source, String destination, IProgressMonitor monitor)
          Get the remote file and save it locally.
 void RemoteFileSubSystem.download(IRemoteFile source, File destination, IProgressMonitor monitor)
          Get the remote file and save it locally.
 void RemoteFileSubSystem.download(IRemoteFile source, File destination, String encoding, IProgressMonitor monitor)
          Get the remote file and save it locally.
 void RemoteFileSubSystem.downloadUTF8(IRemoteFile source, File destination, IProgressMonitor monitor)
          Get the remote file and save it locally.
 void RemoteFileSubSystem.download(IRemoteFile source, IFile destination, IProgressMonitor monitor)
          Get the remote file and save it locally.
 void RemoteFileSubSystem.download(IRemoteFile source, IFile destination, String encoding, IProgressMonitor monitor)
          Get the remote file and save it locally.
 void RemoteFileSubSystem.downloadUTF8(IRemoteFile source, IFile destination, IProgressMonitor monitor)
          Get the remote file and save it locally.
 void RemoteFileSubSystem.upload(String source, IRemoteFile destination, IProgressMonitor monitor)
          Put the local copy of the remote file back to the remote location.
 void RemoteFileSubSystem.upload(String source, String destination, IProgressMonitor monitor)
          Put the local copy of the remote file back to the remote location.
 void RemoteFileSubSystem.uploadUTF8(String source, IRemoteFile destination, IProgressMonitor monitor)
          Put the local copy of the remote file back to the remote location.
 void RemoteFileSubSystem.upload(File source, IRemoteFile destination, IProgressMonitor monitor)
          Put the local copy of the remote file back to the remote location.
 void RemoteFileSubSystem.upload(File source, IRemoteFile destination, String encoding, IProgressMonitor monitor)
          Put the local copy of the remote file back to the remote location.
 void RemoteFileSubSystem.uploadUTF8(File source, IRemoteFile destination, IProgressMonitor monitor)
          Put the local copy of the remote file back to the remote location.
 void RemoteFileSubSystem.upload(IFile source, IRemoteFile destination, IProgressMonitor monitor)
          Put the local copy of the remote file back to the remote location.
 void RemoteFileSubSystem.upload(IFile source, IRemoteFile destination, String encoding, IProgressMonitor monitor)
          Put the local copy of the remote file back to the remote location.
 void RemoteFileSubSystem.uploadUTF8(IFile source, IRemoteFile destination, IProgressMonitor monitor)
          Put the local copy of the remote file back to the remote location.
 IRemoteFile IRemoteFileSubSystem.createFile(IRemoteFile fileToCreate)
          Create a new file, given its IRemoteFile object (these do not have to represent existing files).
 IRemoteFile IRemoteFileSubSystem.createFolder(IRemoteFile folderToCreate)
          Create a new folder, given its IRemoteFile object (these do not have to represent existing folders) The parent folder must exist for this to succeed.
 IRemoteFile IRemoteFileSubSystem.createFolders(IRemoteFile folderToCreate)
          Given an IRemoteFile for a folder, this will create that folder and any missing parent folders in its path.
 boolean IRemoteFileSubSystem.delete(IRemoteFile folderOrFile, IProgressMonitor monitor)
          Delete the given remote file or folder.
 boolean IRemoteFileSubSystem.deleteBatch(IRemoteFile[] folderOrFiles, IProgressMonitor monitor)
          Delete the given batch of remote file or folder.
 boolean IRemoteFileSubSystem.rename(IRemoteFile folderOrFile, String newName)
          Rename the given remote file or folder.
 boolean IRemoteFileSubSystem.move(IRemoteFile sourceFolderOrFile, IRemoteFile targetFolder, String newName, IProgressMonitor monitor)
          Move a file or folder to a new target parent folder.
 boolean IRemoteFileSubSystem.setLastModified(IRemoteFile folderOrFile, long newDate)
          Set the last modified date for the given file or folder.
 boolean IRemoteFileSubSystem.setReadOnly(IRemoteFile folderOrFile)
          Set a file to readonly.
 boolean IRemoteFileSubSystem.copy(IRemoteFile sourceFolderOrFile, IRemoteFile targetFolder, String newName, IProgressMonitor monitor)
          Copy a file or folder to a new target parent folder.
 boolean IRemoteFileSubSystem.copyBatch(IRemoteFile[] sourceFolderOrFile, IRemoteFile targetFolder, IProgressMonitor monitor)
          Copy a set of remote files or folders to a new target parent folder.
 void IRemoteFileSubSystem.download(IRemoteFile source, String destination, IProgressMonitor monitor)
          Get the remote file and save it locally.
 void IRemoteFileSubSystem.download(IRemoteFile source, String destination, String encoding, IProgressMonitor monitor)
          Get the remote file and save it locally.
 void IRemoteFileSubSystem.downloadUTF8(IRemoteFile source, String destination, IProgressMonitor monitor)
          Get the remote file and save it locally.
 void IRemoteFileSubSystem.download(IRemoteFile source, File destination, IProgressMonitor monitor)
          Get the remote file and save it locally.
 void IRemoteFileSubSystem.download(IRemoteFile source, File destination, String encoding, IProgressMonitor monitor)
          Get the remote file and save it locally.
 void IRemoteFileSubSystem.downloadUTF8(IRemoteFile source, File destination, IProgressMonitor monitor)
          Get the remote file and save it locally.
 void IRemoteFileSubSystem.download(IRemoteFile source, IFile destination, IProgressMonitor monitor)
          Get the remote file and save it locally.
 void IRemoteFileSubSystem.download(IRemoteFile source, IFile destination, String encoding, IProgressMonitor monitor)
          Get the remote file and save it locally.
 void IRemoteFileSubSystem.downloadUTF8(IRemoteFile source, IFile destination, IProgressMonitor monitor)
          Get the remote file and save it locally.
 void IRemoteFileSubSystem.upload(String source, IRemoteFile destination, IProgressMonitor monitor)
          Put the local copy of the remote file back to the remote location.
 void IRemoteFileSubSystem.upload(String source, IRemoteFile destination, String encoding, IProgressMonitor monitor)
          Put the local copy of the remote file back to the remote location.
 void IRemoteFileSubSystem.upload(InputStream stream, long totalBytes, IRemoteFile destination, String encoding, IProgressMonitor monitor)
          Put local data to a remote location.
 void IRemoteFileSubSystem.upload(String source, String destination, IProgressMonitor monitor)
          Put the local copy of the remote file back to the remote location.
 void IRemoteFileSubSystem.upload(String source, String srcEncoding, String remotePath, String rmtEncoding, IProgressMonitor monitor)
          Put the local copy of the remote file back to the remote location.
 void IRemoteFileSubSystem.uploadUTF8(String source, IRemoteFile destination, IProgressMonitor monitor)
          Put the local copy of the remote file back to the remote location.
 void IRemoteFileSubSystem.upload(File source, IRemoteFile destination, IProgressMonitor monitor)
          Put the local copy of the remote file back to the remote location.
 void IRemoteFileSubSystem.upload(File source, IRemoteFile destination, String encoding, IProgressMonitor monitor)
          Put the local copy of the remote file back to the remote location.
 void IRemoteFileSubSystem.uploadUTF8(File source, IRemoteFile destination, IProgressMonitor monitor)
          Put the local copy of the remote file back to the remote location.
 void IRemoteFileSubSystem.upload(IFile source, IRemoteFile destination, IProgressMonitor monitor)
          Put the local copy of the remote file back to the remote location.
 void IRemoteFileSubSystem.upload(IFile source, IRemoteFile destination, String encoding, IProgressMonitor monitor)
          Put the local copy of the remote file back to the remote location.
 void IRemoteFileSubSystem.uploadUTF8(IFile source, IRemoteFile destination, IProgressMonitor monitor)
          Put the local copy of the remote file back to the remote location.
 


RSE
Release 1.0

Copyright (c) IBM Corporation and others 2000, 2006. All Rights Reserved.