RSE
Release 1.0

Uses of Class
org.eclipse.rse.services.clientserver.messages.SystemMessageException

Packages that use SystemMessageException
org.eclipse.rse.core.subsystems   
org.eclipse.rse.files.ui.resources   
org.eclipse.rse.files.ui.view   
org.eclipse.rse.files.ui.wizards   
org.eclipse.rse.processes.ui.actions   
org.eclipse.rse.services.dstore.files   
org.eclipse.rse.services.dstore.processes   
org.eclipse.rse.services.files   
org.eclipse.rse.services.files.ftp   
org.eclipse.rse.services.local.files   
org.eclipse.rse.services.local.processes   
org.eclipse.rse.services.processes   
org.eclipse.rse.services.ssh.files   
org.eclipse.rse.subsystems.files.core.servicesubsystem   
org.eclipse.rse.subsystems.files.core.subsystems   
org.eclipse.rse.subsystems.processes.core.subsystem   
org.eclipse.rse.subsystems.processes.core.subsystem.impl   
org.eclipse.rse.subsystems.processes.servicesubsystem   
org.eclipse.rse.subsystems.shells.core.subsystems.servicesubsystem   
org.eclipse.rse.ui.actions   
org.eclipse.rse.ui.messages   
org.eclipse.rse.ui.operations   
 

Uses of SystemMessageException in org.eclipse.rse.core.subsystems
 

Methods in org.eclipse.rse.core.subsystems with parameters of type SystemMessageException
protected  void SubSystem.displayAsyncMsg(SystemMessageException msg)
          Display message on message thread
 

Methods in org.eclipse.rse.core.subsystems that throw SystemMessageException
 void SubSystem.checkIsConnected()
          This is a helper method you can call when performing actions that must be certain there is a connection.
protected  boolean SubSystem.implicitConnect(boolean isConnectOperation, IProgressMonitor mon, String msg, int totalWorkUnits)
           
 void ISubSystem.checkIsConnected()
          This is a helper method you can call when performing actions that must be certain there is a connection.
 

Constructors in org.eclipse.rse.core.subsystems with parameters of type SystemMessageException
SubSystem.DisplayErrorMessageJob(Shell shell, SystemMessageException msgExc)
          Constructor
 

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

Methods in org.eclipse.rse.files.ui.resources that throw SystemMessageException
static void UniversalFileTransferUtility.transferProperties(IResource source, IRemoteFile target, IProgressMonitor monitor)
           
 

Uses of SystemMessageException in org.eclipse.rse.files.ui.view
 

Methods in org.eclipse.rse.files.ui.view that throw SystemMessageException
 IFile SystemViewRemoteFileAdapter.getCachedCopy(IRemoteFile remoteFile)
           
 

Uses of SystemMessageException in org.eclipse.rse.files.ui.wizards
 

Methods in org.eclipse.rse.files.ui.wizards that throw SystemMessageException
protected  IRemoteFile[] SystemNewFolderWizard.getParentFolders()
          Deduce the parent remote folder to hold the new folder, by examining the current selection
protected  IRemoteFile[] SystemNewFileWizard.getParentFolders()
          Deduce the parent remote folder to hold the new folder, by examining the current selection
static IRemoteFile[] SystemNewFileWizard.getParentFolders(ISystemFilterReference filterRef)
          Given a filter reference, return a list of all the unique root folders, one per filter string at most.
 

Uses of SystemMessageException in org.eclipse.rse.processes.ui.actions
 

Methods in org.eclipse.rse.processes.ui.actions with parameters of type SystemMessageException
protected  void SystemKillProcessAction.showOperationErrorMessage(Shell shell, SystemMessageException exc)
          Show an error message when the operation fails.
 

Uses of SystemMessageException in org.eclipse.rse.services.dstore.files
 

Methods in org.eclipse.rse.services.dstore.files that throw SystemMessageException
 boolean DStoreFileService.download(IProgressMonitor monitor, String remoteParent, String remoteFile, File localFile, boolean isBinary, String encoding)
           
 IHostFile DStoreFileService.createFile(IProgressMonitor monitor, String remoteParent, String fileName)
           
 IHostFile DStoreFileService.createFolder(IProgressMonitor monitor, String remoteParent, String folderName)
           
 boolean DStoreFileService.delete(IProgressMonitor monitor, String remoteParent, String fileName)
           
 boolean DStoreFileService.deleteBatch(IProgressMonitor monitor, String[] remoteParents, String[] fileNames)
           
 boolean DStoreFileService.rename(IProgressMonitor monitor, String remoteParent, String oldName, String newName)
           
 boolean DStoreFileService.rename(IProgressMonitor monitor, String remoteParent, String oldName, String newName, IHostFile oldFile)
           
 boolean DStoreFileService.move(IProgressMonitor monitor, String srcParent, String srcName, String tgtParent, String tgtName)
           
 boolean DStoreFileService.copy(IProgressMonitor monitor, String srcParent, String srcName, String tgtParent, String tgtName)
           
 boolean DStoreFileService.copyBatch(IProgressMonitor monitor, String[] srcParents, String[] srcNames, String tgtParent)
           
 

Uses of SystemMessageException in org.eclipse.rse.services.dstore.processes
 

Methods in org.eclipse.rse.services.dstore.processes that throw SystemMessageException
 IHostProcess[] DStoreProcessService.listAllProcesses(IProgressMonitor monitor, IHostProcessFilter filter)
           
 boolean DStoreProcessService.kill(IProgressMonitor monitor, long PID, String signal)
           
 

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

Subclasses of SystemMessageException 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.
 class RemoteFileException
          Base class for remote file system exceptions.
 class RemoteFileIOException
          Exception thrown when attempting an operation and it fails for IO reasons, such as the file is read-only.
 class RemoteFileSecurityException
          Exception thrown when attempting an operation and it fails for security reasons.
 class RemoteFolderNotEmptyException
          Exception thrown when attempting to delete a folder, and the folder is not empty.
 

Methods in org.eclipse.rse.services.files that throw SystemMessageException
 IHostFile[] AbstractFileService.getFiles(IProgressMonitor monitor, String remoteParent, String fileFilter)
           
 IHostFile[] AbstractFileService.getFolders(IProgressMonitor monitor, String remoteParent, String fileFilter)
           
 IHostFile[] AbstractFileService.getFilesAndFolders(IProgressMonitor monitor, String parentPath, String fileFilter)
           
protected abstract  IHostFile[] AbstractFileService.internalFetch(IProgressMonitor monitor, String parentPath, String fileFilter, int fileType)
           
 boolean AbstractFileService.deleteBatch(IProgressMonitor monitor, String[] remoteParents, String[] fileNames)
           
 boolean IFileService.upload(IProgressMonitor monitor, InputStream stream, String remoteParent, String remoteFile, boolean isBinary, String hostEncoding)
          Copy a file to the remote file system.
 boolean IFileService.upload(IProgressMonitor monitor, File localFile, String remoteParent, String remoteFile, boolean isBinary, String srcEncoding, String hostEncoding)
          Copy a file to the remote file system.
 boolean IFileService.download(IProgressMonitor monitor, String remoteParent, String remoteFile, File localFile, boolean isBinary, String hostEncoding)
          Copy a file from the remote file system to the local system.
 IHostFile IFileService.getFile(IProgressMonitor monitor, String remoteParent, String name)
           
 IHostFile[] IFileService.getFilesAndFolders(IProgressMonitor monitor, String remoteParent, String fileFilter)
           
 IHostFile[] IFileService.getFiles(IProgressMonitor monitor, String remoteParent, String fileFilter)
           
 IHostFile[] IFileService.getFolders(IProgressMonitor monitor, String remoteParent, String fileFilter)
           
 IHostFile[] IFileService.getRoots(IProgressMonitor monitor)
           
 IHostFile IFileService.createFile(IProgressMonitor monitor, String remoteParent, String fileName)
          Create a file on the host
 IHostFile IFileService.createFolder(IProgressMonitor monitor, String remoteParent, String folderName)
          Create a folder on the host
 boolean IFileService.delete(IProgressMonitor monitor, String remoteParent, String fileName)
          Deletes a file or folder on the host
 boolean IFileService.deleteBatch(IProgressMonitor monitor, String[] remoteParents, String[] fileNames)
          Deletes a set of files or folders on the host.
 boolean IFileService.rename(IProgressMonitor monitor, String remoteParent, String oldName, String newName)
          Renames a file or folder on the host
 boolean IFileService.rename(IProgressMonitor monitor, String remoteParent, String oldName, String newName, IHostFile oldFile)
          Renames a file or folder on the host
 boolean IFileService.move(IProgressMonitor monitor, String srcParent, String srcName, String tgtParent, String tgtName)
          Move the file or folder specified
 boolean IFileService.copy(IProgressMonitor monitor, String srcParent, String srcName, String tgtParent, String tgtName)
          Copy the file or folder to the specified destination
 boolean IFileService.copyBatch(IProgressMonitor monitor, String[] srcParents, String[] srcNames, String tgtParent)
          Copy a set of files or folders to the specified destination
 

Uses of SystemMessageException in org.eclipse.rse.services.files.ftp
 

Methods in org.eclipse.rse.services.files.ftp that throw SystemMessageException
 IHostFile FTPService.getFile(IProgressMonitor monitor, String remoteParent, String fileName)
           
protected  IHostFile[] FTPService.internalFetch(IProgressMonitor monitor, String parentPath, String fileFilter, int fileType)
           
 boolean FTPService.upload(IProgressMonitor monitor, File localFile, String remoteParent, String remoteFile, boolean isBinary, String srcEncoding, String hostEncoding)
           
 boolean FTPService.upload(IProgressMonitor monitor, InputStream stream, String remoteParent, String remoteFile, boolean isBinary, String hostEncoding)
           
 boolean FTPService.download(IProgressMonitor monitor, String remoteParent, String remoteFile, File localFile, boolean isBinary, String hostEncoding)
           
 boolean FTPService.delete(IProgressMonitor monitor, String remoteParent, String fileName)
           
 boolean FTPService.rename(IProgressMonitor monitor, String remoteParent, String oldName, String newName)
           
 boolean FTPService.move(IProgressMonitor monitor, String srcParent, String srcName, String tgtParent, String tgtName)
           
 IHostFile FTPService.createFolder(IProgressMonitor monitor, String remoteParent, String folderName)
           
 IHostFile FTPService.createFile(IProgressMonitor monitor, String remoteParent, String fileName)
           
 boolean FTPService.copy(IProgressMonitor monitor, String srcParent, String srcName, String tgtParent, String tgtName)
           
 boolean FTPService.copyBatch(IProgressMonitor monitor, String[] srcParents, String[] srcNames, String tgtParent)
           
 

Uses of SystemMessageException in org.eclipse.rse.services.local.files
 

Methods in org.eclipse.rse.services.local.files that throw SystemMessageException
 boolean LocalFileService.upload(IProgressMonitor monitor, InputStream stream, String remoteParent, String remoteFile, boolean isBinary, String hostEncoding)
           
 boolean LocalFileService.download(IProgressMonitor monitor, String remoteParent, String remoteFile, File destinationFile, boolean isBinary, String hostEncoding)
           
 boolean LocalFileService.upload(IProgressMonitor monitor, File localFile, String remoteParent, String remoteFile, boolean isBinary, String srcEncoding, String hostEncoding)
           
 IHostFile LocalFileService.createFile(IProgressMonitor monitor, String remoteParent, String fileName)
           
protected  LocalVirtualHostFile LocalFileService.createFileInArchive(File newFile)
           
 IHostFile LocalFileService.createFolder(IProgressMonitor monitor, String remoteParent, String folderName)
           
protected  LocalVirtualHostFile LocalFileService.createFolderInArchive(File newFolder)
           
 boolean LocalFileService.delete(IProgressMonitor monitor, String remoteParent, String fileName)
           
protected  boolean LocalFileService.deleteFromArchive(File destination)
          Deletes a virtual file from its archive.
 boolean LocalFileService.rename(IProgressMonitor monitor, String remoteParent, String oldName, String newName)
           
 boolean LocalFileService.rename(IProgressMonitor monitor, String remoteParent, String oldName, String newName, IHostFile oldFile)
           
protected  boolean LocalFileService.renameVirtualFile(File destination, String newName)
          Renames a virtual file
 boolean LocalFileService.move(IProgressMonitor monitor, String srcParent, String srcName, String tgtParent, String tgtName)
           
 boolean LocalFileService.copy(IProgressMonitor monitor, String srcParent, String srcName, String tgtParent, String tgtName)
           
 boolean LocalFileService.copyFromArchive(File sourceFolderOrFile, File targetFolder, String newName, IProgressMonitor monitor, String sourceEncoding, String targetEncoding, boolean isText)
          Copy a file or folder to a new target parent folder, but if copying from an archive, extract the file in the encoding specified
 boolean LocalFileService.copyBatch(IProgressMonitor monitor, String[] srcParents, String[] srcNames, String tgtParent)
           
 

Uses of SystemMessageException in org.eclipse.rse.services.local.processes
 

Methods in org.eclipse.rse.services.local.processes that throw SystemMessageException
 IHostProcess[] LocalProcessService.listAllProcesses(IProgressMonitor monitor, IHostProcessFilter filter)
           
 boolean LocalProcessService.kill(IProgressMonitor monitor, long PID, String signal)
           
 

Uses of SystemMessageException in org.eclipse.rse.services.processes
 

Methods in org.eclipse.rse.services.processes that throw SystemMessageException
 IHostProcess[] IProcessService.listAllProcesses(IProgressMonitor monitor)
          Return a list of all processes on the remote system.
 IHostProcess[] IProcessService.listAllProcesses(IProgressMonitor monitor, IHostProcessFilter filter)
          Return a filtered list of all processes on the remote system.
 IHostProcess[] IProcessService.listAllProcesses(IProgressMonitor monitor, String exeNameFilter, String userNameFilter, String stateFilter)
          Return a filtered list of all processes on the remote system.
 IHostProcess[] IProcessService.listRootProcesses(IProgressMonitor monitor)
          Returns root processes on the remote system
 IHostProcess[] IProcessService.listChildProcesses(IProgressMonitor monitor, long parentPID)
          Return a list of all remote child processes of the given parent process on the remote system
 IHostProcess[] IProcessService.listChildProcesses(IProgressMonitor monitor, long parentPID, IHostProcessFilter filter)
          Return a filtered list of remote child processes of the given parent process on the remote system
 IHostProcess IProcessService.getParentProcess(IProgressMonitor monitor, long PID)
          Given a process, return its parent process object.
 IHostProcess IProcessService.getProcess(IProgressMonitor monitor, long PID)
          Given a pid, return an IHostProcess object for it.
 boolean IProcessService.kill(IProgressMonitor monitor, long PID, String signal)
          Kills a process.
 IHostProcess[] AbstractProcessService.listAllProcesses(IProgressMonitor monitor, String exeNameFilter, String userNameFilter, String stateFilter)
           
 IHostProcess[] AbstractProcessService.listAllProcesses(IProgressMonitor monitor)
           
 IHostProcess[] AbstractProcessService.listRootProcesses(IProgressMonitor monitor)
          Return a single IHostProcess object for the 'init' process with pid 1.
 IHostProcess[] AbstractProcessService.listChildProcesses(IProgressMonitor monitor, long parentPID)
           
 IHostProcess[] AbstractProcessService.listChildProcesses(IProgressMonitor monitor, long parentPID, IHostProcessFilter filter)
           
 IHostProcess AbstractProcessService.getParentProcess(IProgressMonitor monitor, long PID)
           
 IHostProcess AbstractProcessService.getProcess(IProgressMonitor monitor, long PID)
           
 

Uses of SystemMessageException in org.eclipse.rse.services.ssh.files
 

Methods in org.eclipse.rse.services.ssh.files that throw SystemMessageException
 void SftpFileService.connect()
           
protected  com.jcraft.jsch.ChannelSftp SftpFileService.getChannel(String task)
           
 IHostFile SftpFileService.getFile(IProgressMonitor monitor, String remoteParent, String fileName)
           
protected  IHostFile[] SftpFileService.internalFetch(IProgressMonitor monitor, String parentPath, String fileFilter, int fileType)
           
 boolean SftpFileService.upload(IProgressMonitor monitor, File localFile, String remoteParent, String remoteFile, boolean isBinary, String srcEncoding, String hostEncoding)
           
 boolean SftpFileService.upload(IProgressMonitor monitor, InputStream stream, String remoteParent, String remoteFile, boolean isBinary, String hostEncoding)
           
 boolean SftpFileService.download(IProgressMonitor monitor, String remoteParent, String remoteFile, File localFile, boolean isBinary, String hostEncoding)
           
 IHostFile SftpFileService.createFile(IProgressMonitor monitor, String remoteParent, String fileName)
           
 IHostFile SftpFileService.createFolder(IProgressMonitor monitor, String remoteParent, String folderName)
           
 boolean SftpFileService.delete(IProgressMonitor monitor, String remoteParent, String fileName)
           
 boolean SftpFileService.rename(IProgressMonitor monitor, String remoteParent, String oldName, String newName)
           
 boolean SftpFileService.rename(IProgressMonitor monitor, String remoteParent, String oldName, String newName, IHostFile oldFile)
           
 int SftpFileService.runCommand(IProgressMonitor monitor, String command)
           
 boolean SftpFileService.move(IProgressMonitor monitor, String srcParent, String srcName, String tgtParent, String tgtName)
           
 boolean SftpFileService.copy(IProgressMonitor monitor, String srcParent, String srcName, String tgtParent, String tgtName)
           
 boolean SftpFileService.copyBatch(IProgressMonitor monitor, String[] srcParents, String[] srcNames, String tgtParent)
           
 

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

Methods in org.eclipse.rse.subsystems.files.core.servicesubsystem that throw SystemMessageException
 IRemoteFile FileServiceSubSystem.getRemoteFileObject(IRemoteFile parent, String folderOrFileName)
          Constructs an IRemoteFile object given an unqualified file or folder name and its parent folder object.
 IRemoteFile FileServiceSubSystem.getRemoteFileObject(String folderOrFileName)
          Constructs and returns an IRemoteFile object given a fully-qualified file or folder name.
protected  IHostFile[] FileServiceSubSystem.getFolders(IProgressMonitor monitor, String parentPath, String fileNameFilter)
           
protected  IHostFile[] FileServiceSubSystem.getFiles(IProgressMonitor monitor, String parentPath, String fileNameFilter)
           
protected  IHostFile[] FileServiceSubSystem.getFilesAndFolders(IProgressMonitor monitor, String parentPath, String fileNameFilter)
           
protected  IHostFile FileServiceSubSystem.getFile(IProgressMonitor monitor, String parentPath, String fileName)
           
protected  IHostFile[] FileServiceSubSystem.getRoots(IProgressMonitor monitor)
           
 IRemoteFile[] FileServiceSubSystem.listFoldersAndFiles(IRemoteFile parent, String fileNameFilter, IRemoteFileContext context, IProgressMonitor monitor)
          Return a list of remote folders and files in the given folder.
 IRemoteFile[] FileServiceSubSystem.listFiles(IRemoteFile parent, String fileNameFilter, IRemoteFileContext context, IProgressMonitor monitor)
          Return the array of IRemoteFile instances, matching the given pattern, that are contained in the given folder.
 IRemoteFile[] FileServiceSubSystem.listFolders(IRemoteFile parent, String fileNameFilter, IRemoteFileContext context, IProgressMonitor monitor)
          Return a subsetted list of remote folders in the given parent folder on the remote system.
 

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

Methods in org.eclipse.rse.subsystems.files.core.subsystems that throw SystemMessageException
protected  Object[] RemoteFileSubSystem.internalResolveOneFilterString(IProgressMonitor monitor, Object parent, RemoteFileFilterString fs, boolean sort)
          Do one filter string relative resolve
 IRemoteFile[] RemoteFileSubSystem.listFolders(IRemoteFile parent, IProgressMonitor monitor)
          Return a list of all remote folders in the given parent folder on the remote system
 IRemoteFile[] RemoteFileSubSystem.listFolders(IRemoteFile parent, String fileNameFilter, IProgressMonitor monitor)
          Return a full list of remote folders in the given parent folder on the remote system.
 IRemoteFile[] RemoteFileSubSystem.listFiles(IRemoteFile parent, IProgressMonitor monitor)
          Return a list of all remote files in the given parent folder on the remote system
 IRemoteFile[] RemoteFileSubSystem.listFiles(IRemoteFile parent, String fileNameFilter, IProgressMonitor monitor)
          Return a list of remote files in the given folder, which match the given name pattern.
 IRemoteFile[] RemoteFileSubSystem.listFoldersAndFiles(IRemoteFile parent, IProgressMonitor monitor)
          Return a list of all remote folders and files in the given folder.
 IRemoteFile[] RemoteFileSubSystem.listFoldersAndFiles(IRemoteFile parent, String fileNameFilter, IProgressMonitor monitor)
          Return a list of remote folders and files in the given folder.
 IRemoteSearchResult RemoteFileSubSystem.getRemoteSearchResultObject(String key)
           
 SystemRemoteResourceSet RemoteFileSubSystem.getRemoteFileObjects(List folderOrFileNames)
          Overrideable Override this method to provide optimized implementation Given a set of fully qualified file or folder names, return an ISystemResourceSet object for it.
 IRemoteFile RemoteFileSubSystem.getRemoteFileObject(IRemoteFile parent, String folderOrFileName)
          Given a un-qualified file or folder name, and its parent folder object, return an IRemoteFile object for the file.
 IRemoteFile[] IRemoteFileSubSystem.listRoots(IProgressMonitor monitor)
          Return a list of roots/drives on the remote system.
 IRemoteFile[] IRemoteFileSubSystem.listFolders(IRemoteFile parent, IProgressMonitor monitor)
          Return a list of all remote folders in the given parent folder on the remote system
 IRemoteFile[] IRemoteFileSubSystem.listFolders(IRemoteFile parent, String fileNameFilter, IProgressMonitor monitor)
          Return a full list of remote folders in the given parent folder on the remote system.
 IRemoteFile[] IRemoteFileSubSystem.listFiles(IRemoteFile parent, IProgressMonitor monitor)
          Return a list of all remote files in the given parent folder on the remote system
 IRemoteFile[] IRemoteFileSubSystem.listFiles(IRemoteFile parent, String fileNameFilter, IProgressMonitor monitor)
          Return a list of remote files in the given folder, which match the given name pattern.
 IRemoteFile[] IRemoteFileSubSystem.listFoldersAndFiles(IRemoteFile parent, IProgressMonitor monitor)
          Return a list of all remote folders and files in the given folder.
 IRemoteFile[] IRemoteFileSubSystem.listFoldersAndFiles(IRemoteFile parent, String fileNameFilter, IProgressMonitor monitor)
          Return a list of remote folders and files in the given folder.
 IRemoteFile[] IRemoteFileSubSystem.listFoldersAndFiles(IRemoteFile parent, String fileNameFilter, IRemoteFileContext context, IProgressMonitor monitor)
          Return a list of remote folders and files in the given folder.
 IRemoteFile[] IRemoteFileSubSystem.listFolders(IRemoteFile parent, String fileNameFilter, IRemoteFileContext context, IProgressMonitor monitor)
          Return a subsetted list of remote folders in the given parent folder on the remote system.
 IRemoteFile[] IRemoteFileSubSystem.listFiles(IRemoteFile parent, String fileNameFilter, IRemoteFileContext context, IProgressMonitor monitor)
          Return a list of remote files in the given folder, which match the given name pattern.
 SystemRemoteResourceSet IRemoteFileSubSystem.getRemoteFileObjects(List folderOrFileNames)
          Given a set of fully qualified file or folder names, return an ISystemResourceSet object for it.
 IRemoteFile IRemoteFileSubSystem.getRemoteFileObject(String folderOrFileName)
          Given a fully qualified file or folder name, return an IRemoteFile object for it.
 IRemoteFile IRemoteFileSubSystem.getRemoteFileObject(IRemoteFile parent, String folderOrFileName)
          Given a un-qualified file or folder name, and its parent folder object, return an IRemoteFile object for the file.
 IRemoteSearchResult IRemoteFileSubSystem.getRemoteSearchResultObject(String key)
          Given a key, returns a search result object for it.
 

Uses of SystemMessageException in org.eclipse.rse.subsystems.processes.core.subsystem
 

Methods in org.eclipse.rse.subsystems.processes.core.subsystem that throw SystemMessageException
 IRemoteProcess[] IRemoteProcessSubSystem.listAllProcesses(IHostProcessFilter processNameFilter, IRemoteProcessContext context, IProgressMonitor monitor)
          Return a list of all processes on the remote system.
 IRemoteProcess[] IRemoteProcessSubSystem.listChildProcesses(IRemoteProcess parent, IRemoteProcessContext context, IProgressMonitor monitor)
          Return a list of all remote child processes of the given parent process on the remote system
 IRemoteProcess[] IRemoteProcessSubSystem.listChildProcesses(IRemoteProcess parent, IHostProcessFilter processFilter, IRemoteProcessContext context, IProgressMonitor monitor)
          Return a list of remote child processes of the given process, which match the filter.
 IRemoteProcess IRemoteProcessSubSystem.getRemoteProcessObject(long pid)
          Given a pid, return an IRemoteProcess object for it.
 boolean IRemoteProcessSubSystem.kill(IRemoteProcess process, String signal)
          Kill the given process.
 String[] IRemoteProcessSubSystem.getSignalTypes()
          Returns a list of the types of signals that can be sent to a process on the remote system.
 

Uses of SystemMessageException in org.eclipse.rse.subsystems.processes.core.subsystem.impl
 

Methods in org.eclipse.rse.subsystems.processes.core.subsystem.impl that throw SystemMessageException
abstract  IRemoteProcess[] RemoteProcessSubSystemImpl.listAllProcesses(IHostProcessFilter processNameFilter, IRemoteProcessContext context, IProgressMonitor monitor)
           
abstract  IRemoteProcess RemoteProcessSubSystemImpl.getRemoteProcessObject(long pid)
           
abstract  boolean RemoteProcessSubSystemImpl.kill(IRemoteProcess process, String signal)
           
abstract  String[] RemoteProcessSubSystemImpl.getSignalTypes()
           
 

Uses of SystemMessageException in org.eclipse.rse.subsystems.processes.servicesubsystem
 

Methods in org.eclipse.rse.subsystems.processes.servicesubsystem that throw SystemMessageException
 IRemoteProcess ProcessServiceSubSystem.getRemoteProcessObject(long pid)
          Returns the IRemoteProcess representing the process on the remote machine that has a certain pid.
 String[] ProcessServiceSubSystem.getSignalTypes()
           
 boolean ProcessServiceSubSystem.kill(IRemoteProcess process, String signal)
           
 IRemoteProcess[] ProcessServiceSubSystem.listAllProcesses(IHostProcessFilter processFilter, IRemoteProcessContext context, IProgressMonitor monitor)
           
 IRemoteProcess[] ProcessServiceSubSystem.listChildProcesses(IRemoteProcess parent, IHostProcessFilter processFilter, IRemoteProcessContext context, IProgressMonitor monitor)
           
 IRemoteProcess[] ProcessServiceSubSystem.listChildProcesses(IRemoteProcess parent, IRemoteProcessContext context, IProgressMonitor monitor)
           
 

Uses of SystemMessageException in org.eclipse.rse.subsystems.shells.core.subsystems.servicesubsystem
 

Methods in org.eclipse.rse.subsystems.shells.core.subsystems.servicesubsystem that throw SystemMessageException
protected  Object[] ShellServiceSubSystem.internalRunCommand(IProgressMonitor monitor, String cmd, Object context)
           
protected  Object[] ShellServiceSubSystem.internalRunCommand(IProgressMonitor monitor, String cmd, Object context, boolean interpretOutput)
           
protected  IRemoteCommandShell ShellServiceSubSystem.internalRunShell(IProgressMonitor monitor, Object context)
           
 

Uses of SystemMessageException in org.eclipse.rse.ui.actions
 

Methods in org.eclipse.rse.ui.actions with parameters of type SystemMessageException
protected  void SystemBaseCopyAction.showOperationErrorMessage(Shell shell, SystemMessageException exc)
          Show an error message when the operation fails.
 

Uses of SystemMessageException in org.eclipse.rse.ui.messages
 

Methods in org.eclipse.rse.ui.messages with parameters of type SystemMessageException
static void SystemMessageDialog.displayMessage(Shell shell, SystemMessageException msgEx)
          Display this wrapped system message to the user
 

Constructors in org.eclipse.rse.ui.messages with parameters of type SystemMessageException
SystemMessageStatus(SystemMessageException exception)
           
 

Uses of SystemMessageException in org.eclipse.rse.ui.operations
 

Methods in org.eclipse.rse.ui.operations with parameters of type SystemMessageException
protected  void SystemFetchOperation.displayAsyncMsg(SubSystem ss, SystemMessageException msg)
          Display message on message thread
 


RSE
Release 1.0

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