Uses of Class
com.togethersoft.openapi.vcs.VcsProviderException

Packages that use VcsProviderException
com.togethersoft.openapi.vcs 

Uses of VcsProviderException in com.togethersoft.openapi.vcs
 

Subclasses of VcsProviderException in com.togethersoft.openapi.vcs
class CapabilityException
           Thrown by VcsPvovider as a result to calling a non-supported exec method.
class SessionNotStartedException
           Thrown by VcsProvider as a result of calling a method requiring a running session when session is not started.
 

Methods in com.togethersoft.openapi.vcs that throw VcsProviderException
voidDefaultVcsProvider.changeWorkingDirectory(File workingDirectory)
           Changes the value of internal current working directory field.
voidDefaultVcsProvider.endSession()
           Clears all internal fields.
intDefaultVcsProvider.execAddFiles(String[] files, int[] fileTypes, String comment, boolean makeCheckedOut, boolean removeLocal)
           Throws CapabilityException.
intDefaultVcsProvider.execCheckInFiles(String[] files, String comment, boolean keepCheckedOut, boolean removeLocal, boolean wholeProject, boolean projectRecursively)
           Throws CapabilityException.
intDefaultVcsProvider.execCheckOutFiles(String[] files, String comment, boolean wholeProject, boolean projectRecursively)
           Throws CapabilityException.
intDefaultVcsProvider.execGetFiles(String[] files, boolean wholeProject, boolean projectRecursively)
           Throws CapabilityException.
intDefaultVcsProvider.execGetFilesStatuses(String[] files, int[] statuses)
           Throws CapabilityException.
intDefaultVcsProvider.execGetMissingFiles(Vector files)
           Throws CapabilityException.
intDefaultVcsProvider.execGetRawFileDiff(String fileName, boolean ignoreCase, boolean ignoreSpace, StringBuffer diff)
           Throws CapabilityException.
intDefaultVcsProvider.execLockFiles(String[] files, boolean wholeProject, boolean projectRecursively)
           Throws CapabilityException.
intDefaultVcsProvider.execRemoveFiles(String[] files, String comment, boolean removeLocal)
           Throws CapabilityException.
intDefaultVcsProvider.execRenameFile(String fileName, String newFileName)
           Throws CapabilityException.
intDefaultVcsProvider.execSelectProject(String defaultProject, File workingDir, boolean createNewProject, StringBuffer selectedProject)
           Throws CapabilityException.
intDefaultVcsProvider.execSetFilesLabel(String[] files, String label, boolean wholeProject, boolean projectRecursively)
           Throws CapabilityException.
intDefaultVcsProvider.execShowAdvancedOptions(String command, boolean project)
           Throws CapabilityException.
intDefaultVcsProvider.execShowFileDiff(String fileName, boolean ignoreCase, boolean ignoreSpace)
           Throws CapabilityException.
intDefaultVcsProvider.execShowFileProperties(String fileName)
           Throws CapabilityException.
intDefaultVcsProvider.execShowFilesHistory(String[] files, boolean wholeProject, boolean projectRecursively)
           Throws CapabilityException.
intDefaultVcsProvider.execUnCheckOutFiles(String[] files, boolean removeLocal, boolean wholeProject, boolean projectRecursively)
           Throws CapabilityException.
intDefaultVcsProvider.execUnLockFiles(String[] files, boolean wholeProject, boolean projectRecursively)
           Throws CapabilityException.
intDefaultVcsProvider.execUpdateFiles(String[] files, boolean wholeProject, boolean projectRecursively)
           Throws CapabilityException.
intDefaultVcsProvider.getFileStatus(String filename)
           Returns FILE_STATUS_NONE.
voidVcsProvider.changeWorkingDirectory(File workingDirectory)
           Changes current working directory.
voidVcsProvider.endSession()
           Ends current session.
intVcsProvider.execAddFiles(String[] files, int[] fileTypes, String comment, boolean makeCheckedOut, boolean removeLocal)
           Add files from current working directory to the repository.
intVcsProvider.execCheckInFiles(String[] files, String comment, boolean keepCheckedOut, boolean removeLocal, boolean wholeProject, boolean projectRecursively)
           Check in files.
intVcsProvider.execCheckOutFiles(String[] files, String comment, boolean wholeProject, boolean projectRecursively)
           Check out files.
intVcsProvider.execGetFiles(String[] files, boolean wholeProject, boolean projectRecursively)
           Retrieve files from repository to working directory.
intVcsProvider.execGetFilesStatuses(String[] files, int[] statuses)
           Retrieves the statuses of files from current working directory with names specified in files array.
intVcsProvider.execGetMissingFiles(Vector files)
           Retrieves the list of file names in current VCS project missing in current working directory, that is which are to be downloaded from VCS on next get project operation.
intVcsProvider.execGetRawFileDiff(String fileName, boolean ignoreCase, boolean ignoreSpace, StringBuffer diff)
           Returns the raw result of diff command run on a file.
intVcsProvider.execLockFiles(String[] files, boolean wholeProject, boolean projectRecursively)
           Locks file(s) or whole project in repository, so that no one is allowed to edit files but the current user.
intVcsProvider.execRemoveFiles(String[] files, String comment, boolean removeLocal)
           Remove files from current working directory from repository.
intVcsProvider.execRenameFile(String fileName, String newFileName)
           Rename a file from current working directory in repository.
intVcsProvider.execSelectProject(String defaultProject, File workingDir, boolean createNewProject, StringBuffer selectedProject)
           Displays a dialog which allows the user to select a project in repository.
intVcsProvider.execSetFilesLabel(String[] files, String label, boolean wholeProject, boolean projectRecursively)
           Applies a label to latest version of specified files or project in repository.
intVcsProvider.execShowAdvancedOptions(String command, boolean project)
           Shows dialog with advanced options for command to the user.
intVcsProvider.execShowFileDiff(String fileName, boolean ignoreCase, boolean ignoreSpace)
           Invokes file difference dialog for specified file or directory.
intVcsProvider.execShowFileProperties(String fileName)
           Invokes a dialog specific to souce control system with detailed properties for a file.
intVcsProvider.execShowFilesHistory(String[] files, boolean wholeProject, boolean projectRecursively)
           Invokes a dialog which shows history of changes to specified files or whole project.
intVcsProvider.execUnCheckOutFiles(String[] files, boolean removeLocal, boolean wholeProject, boolean projectRecursively)
           Undo check out files.
intVcsProvider.execUnLockFiles(String[] files, boolean wholeProject, boolean projectRecursively)
           Unlock file(s) or the whole project.
intVcsProvider.execUpdateFiles(String[] files, boolean wholeProject, boolean projectRecursively)
           Update files with latest version in the repository.
intVcsProvider.getFileStatus(String filename)
           Used to query status information about a list of selected files.
voidVcsProvider.startSession(String rootProject, File rootWorkingDir)
           Starts new session.
StringVcsProviderType.getValidProjectName(String rootProject, File rootWorkingDir, File workingDir)
           Returns project name valid for this provider which corresponds to working directory workingDir, given that project rootProject corresponds to root working directory rootWorkingDir.
voidVcsProviderType.initialize()
           Performs initialization of version control system.
VcsProviderVcsProviderType.newVcsProvider()
           Creates new instance of VcsProvider.