Modifier and Type | Method and Description |
---|---|
protected Map<String,ScmFile> |
ScmTckTestCase.mapFilesByPath(List<ScmFile> files)
take the files of the given list, add them to a TreeMap and
use the pathName String as key for the Map.
|
Modifier and Type | Method and Description |
---|---|
int |
ScmFile.compareTo(ScmFile other) |
Modifier and Type | Method and Description |
---|---|
protected Map<String,ScmFile> |
ScmTckTestCase.mapFilesByPath(List<ScmFile> files)
take the files of the given list, add them to a TreeMap and
use the pathName String as key for the Map.
|
Modifier and Type | Method and Description |
---|---|
List<ScmFile> |
AddScmResult.getAddedFiles()
List with all the added files in the SCM operation.
|
Constructor and Description |
---|
AddScmResult(List<ScmFile> addedFiles,
ScmResult result) |
AddScmResult(String commandLine,
List<ScmFile> addedFiles) |
Modifier and Type | Method and Description |
---|---|
List<ScmFile> |
BranchScmResult.getBranchedFiles() |
Constructor and Description |
---|
BranchScmResult(List<ScmFile> branchedFiles,
ScmResult result) |
BranchScmResult(String commandLine,
List<ScmFile> branchedFiles) |
Modifier and Type | Method and Description |
---|---|
List<ScmFile> |
CheckInScmResult.getCheckedInFiles() |
Constructor and Description |
---|
CheckInScmResult(List<ScmFile> checkedInFiles,
ScmResult result) |
CheckInScmResult(String commandLine,
List<ScmFile> checkedInFiles) |
CheckInScmResult(String commandLine,
List<ScmFile> checkedInFiles,
String scmRevision) |
Modifier and Type | Method and Description |
---|---|
List<ScmFile> |
CheckOutScmResult.getCheckedOutFiles() |
Constructor and Description |
---|
CheckOutScmResult(List<ScmFile> checkedOutFiles,
ScmResult result) |
CheckOutScmResult(String commandLine,
List<ScmFile> checkedOutFiles) |
CheckOutScmResult(String commandLine,
List<ScmFile> checkedOutFiles,
String relativePathProjectDirectory) |
CheckOutScmResult(String commandLine,
String revision,
List<ScmFile> checkedOutFiles) |
CheckOutScmResult(String commandLine,
String revision,
List<ScmFile> checkedOutFiles,
String relativePathProjectDirectory) |
Modifier and Type | Method and Description |
---|---|
List<ScmFile> |
DiffScmResult.getChangedFiles() |
Constructor and Description |
---|
DiffScmResult(List<ScmFile> changedFiles,
Map<String,CharSequence> differences,
String patch,
ScmResult result) |
DiffScmResult(String commandLine,
List<ScmFile> changedFiles,
Map<String,CharSequence> differences,
String patch) |
Modifier and Type | Method and Description |
---|---|
List<ScmFile> |
EditScmResult.getEditFiles() |
Constructor and Description |
---|
EditScmResult(List<ScmFile> editFiles,
ScmResult result) |
EditScmResult(String commandLine,
List<ScmFile> editFiles) |
Modifier and Type | Method and Description |
---|---|
List<ScmFile> |
ExportScmResult.getExportedFiles() |
Constructor and Description |
---|
ExportScmResult(String commandLine,
List<ScmFile> updatedFiles) |
ExportScmResultWithRevision(String commandLine,
List<ScmFile> exportedFiles,
String revision) |
Modifier and Type | Method and Description |
---|---|
List<ScmFile> |
ListScmResult.getFiles() |
Constructor and Description |
---|
ListScmResult(List<ScmFile> files,
ScmResult result) |
ListScmResult(String commandLine,
List<ScmFile> files) |
Modifier and Type | Method and Description |
---|---|
List<ScmFile> |
MkdirScmResult.getCreatedDirs() |
Constructor and Description |
---|
MkdirScmResult(List<ScmFile> createdDirs,
ScmResult result) |
MkdirScmResult(String commandLine,
List<ScmFile> createdDirs) |
Modifier and Type | Method and Description |
---|---|
List<ScmFile> |
RemoveScmResult.getRemovedFiles() |
Constructor and Description |
---|
RemoveScmResult(List<ScmFile> removedFiles,
ScmResult result) |
RemoveScmResult(String commandLine,
List<ScmFile> removedFiles) |
Modifier and Type | Method and Description |
---|---|
List<ScmFile> |
StatusScmResult.getChangedFiles() |
Constructor and Description |
---|
StatusScmResult(List<ScmFile> changedFiles,
ScmResult result) |
StatusScmResult(String commandLine,
List<ScmFile> changedFiles) |
Modifier and Type | Method and Description |
---|---|
List<ScmFile> |
TagScmResult.getTaggedFiles() |
Constructor and Description |
---|
TagScmResult(List<ScmFile> taggedFiles,
ScmResult result) |
TagScmResult(String commandLine,
List<ScmFile> taggedFiles) |
Modifier and Type | Method and Description |
---|---|
List<ScmFile> |
UnEditScmResult.getUnEditFiles() |
Constructor and Description |
---|
UnEditScmResult(List<ScmFile> unEditFiles,
ScmResult result) |
UnEditScmResult(String commandLine,
List<ScmFile> unEditFiles) |
Modifier and Type | Method and Description |
---|---|
List<ScmFile> |
UpdateScmResult.getUpdatedFiles() |
Constructor and Description |
---|
UpdateScmResult(List<ScmFile> updatedFiles,
List<ChangeSet> changes,
ScmResult result) |
UpdateScmResult(String commandLine,
List<ScmFile> updatedFiles) |
UpdateScmResultWithRevision(List<ScmFile> updatedFiles,
List<ChangeSet> changes,
String revision,
ScmResult result) |
UpdateScmResultWithRevision(String commandLine,
List<ScmFile> updatedFiles,
String revision) |
Modifier and Type | Method and Description |
---|---|
List<ScmFile> |
GitDiffConsumer.getChangedFiles() |
Constructor and Description |
---|
GitUpdateScmResult(String commandLine,
List<ScmFile> updatedFiles,
int revision)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
protected List<ScmFile> |
AbstractFileCheckingConsumer.getFiles() |
Modifier and Type | Method and Description |
---|---|
protected void |
AbstractFileCheckingConsumer.addFile(ScmFile file) |
Modifier and Type | Method and Description |
---|---|
List<ScmFile> |
GitDiffRawConsumer.getChangedFiles() |
Modifier and Type | Method and Description |
---|---|
List<ScmFile> |
GitListConsumer.getListedFiles() |
Modifier and Type | Method and Description |
---|---|
List<ScmFile> |
GitRemoveConsumer.getRemovedFiles() |
Modifier and Type | Method and Description |
---|---|
List<ScmFile> |
GitStatusConsumer.getChangedFiles() |
Modifier and Type | Method and Description |
---|---|
static List<ScmFile> |
JGitUtils.addAllFiles(org.eclipse.jgit.api.Git git,
ScmFileSet fileSet)
Adds all files in the given fileSet to the repository.
|
static List<ScmFile> |
JGitUtils.getFilesInCommit(org.eclipse.jgit.lib.Repository repository,
org.eclipse.jgit.revwalk.RevCommit commit)
get a list of all files in the given commit
|
static List<ScmFile> |
JGitUtils.getFilesInCommit(org.eclipse.jgit.lib.Repository repository,
org.eclipse.jgit.revwalk.RevCommit commit,
File baseDir)
get a list of all files in the given commit
|
static List<ScmFile> |
JGitUtils.removeAllFiles(org.eclipse.jgit.api.Git git,
ScmFileSet fileSet)
Remove all files in the given fileSet from the repository.
|
Modifier and Type | Method and Description |
---|---|
List<ScmFile> |
HgAddConsumer.getAddedFiles() |
Modifier and Type | Method and Description |
---|---|
List<ScmFile> |
HgDiffConsumer.getChangedFiles() |
Modifier and Type | Method and Description |
---|---|
List<ScmFile> |
HgListConsumer.getFiles() |
Modifier and Type | Method and Description |
---|---|
List<ScmFile> |
HgRemoveConsumer.getRemovedFiles() |
Constructor and Description |
---|
LocalCheckOutScmResult(String commandLine,
List<ScmFile> files) |
Constructor and Description |
---|
LocalListScmResult(String commandLine,
List<ScmFile> files) |
Constructor and Description |
---|
LocalUpdateScmResult(String commandLine,
List<ScmFile> files) |
Modifier and Type | Method and Description |
---|---|
List<ScmFile> |
SvnDiffConsumer.getChangedFiles() |
Constructor and Description |
---|
SvnUpdateScmResult(String commandLine,
List<ScmFile> updatedFiles,
int revision)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
protected List<ScmFile> |
AbstractFileCheckingConsumer.getFiles() |
Modifier and Type | Method and Description |
---|---|
protected void |
AbstractFileCheckingConsumer.addFile(ScmFile file) |
Modifier and Type | Method and Description |
---|---|
List<ScmFile> |
SvnAddConsumer.getAddedFiles() |
Modifier and Type | Method and Description |
---|---|
List<ScmFile> |
SvnCheckInConsumer.getCheckedInFiles() |
Modifier and Type | Method and Description |
---|---|
List<ScmFile> |
SvnCheckOutConsumer.getCheckedOutFiles() |
protected List<ScmFile> |
SvnCheckOutConsumer.getFiles() |
Modifier and Type | Method and Description |
---|---|
protected void |
SvnCheckOutConsumer.addFile(ScmFile file) |
Modifier and Type | Method and Description |
---|---|
List<ScmFile> |
SvnListConsumer.getFiles() |
Modifier and Type | Method and Description |
---|---|
List<ScmFile> |
SvnMkdirConsumer.getCreatedDirs() |
Modifier and Type | Method and Description |
---|---|
List<ScmFile> |
SvnRemoveConsumer.getRemovedFiles() |
Modifier and Type | Method and Description |
---|---|
List<ScmFile> |
SvnStatusConsumer.getChangedFiles() |
Modifier and Type | Method and Description |
---|---|
List<ScmFile> |
SvnUpdateConsumer.getUpdatedFiles() |
Copyright © 2003–2024 The Apache Software Foundation. All rights reserved.