Uses of Class
org.apache.maven.scm.ScmFile

Packages that use ScmFile
org.apache.maven.scm   
org.apache.maven.scm.command.add   
org.apache.maven.scm.command.branch   
org.apache.maven.scm.command.checkin   
org.apache.maven.scm.command.checkout   
org.apache.maven.scm.command.diff   
org.apache.maven.scm.command.edit   
org.apache.maven.scm.command.export   
org.apache.maven.scm.command.list   
org.apache.maven.scm.command.mkdir   
org.apache.maven.scm.command.remove   
org.apache.maven.scm.command.status   
org.apache.maven.scm.command.tag   
org.apache.maven.scm.command.unedit   
org.apache.maven.scm.command.update   
 

Uses of ScmFile in org.apache.maven.scm
 

Methods in org.apache.maven.scm with parameters of type ScmFile
 int ScmFile.compareTo(ScmFile other)
          
 

Uses of ScmFile in org.apache.maven.scm.command.add
 

Methods in org.apache.maven.scm.command.add that return types with arguments of type ScmFile
 List<ScmFile> AddScmResult.getAddedFiles()
          List with all the added files in the SCM operation.
 

Constructor parameters in org.apache.maven.scm.command.add with type arguments of type ScmFile
AddScmResult(List<ScmFile> addedFiles, ScmResult result)
           
AddScmResult(String commandLine, List<ScmFile> addedFiles)
           
 

Uses of ScmFile in org.apache.maven.scm.command.branch
 

Methods in org.apache.maven.scm.command.branch that return types with arguments of type ScmFile
 List<ScmFile> BranchScmResult.getBranchedFiles()
           
 

Constructor parameters in org.apache.maven.scm.command.branch with type arguments of type ScmFile
BranchScmResult(List<ScmFile> branchedFiles, ScmResult result)
           
BranchScmResult(String commandLine, List<ScmFile> branchedFiles)
           
 

Uses of ScmFile in org.apache.maven.scm.command.checkin
 

Methods in org.apache.maven.scm.command.checkin that return types with arguments of type ScmFile
 List<ScmFile> CheckInScmResult.getCheckedInFiles()
           
 

Constructor parameters in org.apache.maven.scm.command.checkin with type arguments of type ScmFile
CheckInScmResult(List<ScmFile> checkedInFiles, ScmResult result)
           
CheckInScmResult(String commandLine, List<ScmFile> checkedInFiles)
           
CheckInScmResult(String commandLine, List<ScmFile> checkedInFiles, String scmRevision)
           
 

Uses of ScmFile in org.apache.maven.scm.command.checkout
 

Methods in org.apache.maven.scm.command.checkout that return types with arguments of type ScmFile
 List<ScmFile> CheckOutScmResult.getCheckedOutFiles()
           
 

Constructor parameters in org.apache.maven.scm.command.checkout with type arguments of type ScmFile
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)
           
 

Uses of ScmFile in org.apache.maven.scm.command.diff
 

Methods in org.apache.maven.scm.command.diff that return types with arguments of type ScmFile
 List<ScmFile> DiffScmResult.getChangedFiles()
           
 

Constructor parameters in org.apache.maven.scm.command.diff with type arguments of type ScmFile
DiffScmResult(List<ScmFile> changedFiles, Map<String,CharSequence> differences, String patch, ScmResult result)
           
DiffScmResult(String commandLine, List<ScmFile> changedFiles, Map<String,CharSequence> differences, String patch)
           
 

Uses of ScmFile in org.apache.maven.scm.command.edit
 

Methods in org.apache.maven.scm.command.edit that return types with arguments of type ScmFile
 List<ScmFile> EditScmResult.getEditFiles()
           
 

Constructor parameters in org.apache.maven.scm.command.edit with type arguments of type ScmFile
EditScmResult(List<ScmFile> editFiles, ScmResult result)
           
EditScmResult(String commandLine, List<ScmFile> editFiles)
           
 

Uses of ScmFile in org.apache.maven.scm.command.export
 

Methods in org.apache.maven.scm.command.export that return types with arguments of type ScmFile
 List<ScmFile> ExportScmResult.getExportedFiles()
           
 

Constructor parameters in org.apache.maven.scm.command.export with type arguments of type ScmFile
ExportScmResult(String commandLine, List<ScmFile> updatedFiles)
           
ExportScmResultWithRevision(String commandLine, List<ScmFile> exportedFiles, String revision)
           
 

Uses of ScmFile in org.apache.maven.scm.command.list
 

Methods in org.apache.maven.scm.command.list that return types with arguments of type ScmFile
 List<ScmFile> ListScmResult.getFiles()
           
 

Constructor parameters in org.apache.maven.scm.command.list with type arguments of type ScmFile
ListScmResult(List<ScmFile> files, ScmResult result)
           
ListScmResult(String commandLine, List<ScmFile> files)
           
 

Uses of ScmFile in org.apache.maven.scm.command.mkdir
 

Methods in org.apache.maven.scm.command.mkdir that return types with arguments of type ScmFile
 List<ScmFile> MkdirScmResult.getCreatedDirs()
           
 

Constructor parameters in org.apache.maven.scm.command.mkdir with type arguments of type ScmFile
MkdirScmResult(List<ScmFile> createdDirs, ScmResult result)
           
MkdirScmResult(String commandLine, List<ScmFile> createdDirs)
           
 

Uses of ScmFile in org.apache.maven.scm.command.remove
 

Methods in org.apache.maven.scm.command.remove that return types with arguments of type ScmFile
 List<ScmFile> RemoveScmResult.getRemovedFiles()
           
 

Constructor parameters in org.apache.maven.scm.command.remove with type arguments of type ScmFile
RemoveScmResult(List<ScmFile> removedFiles, ScmResult result)
           
RemoveScmResult(String commandLine, List<ScmFile> removedFiles)
           
 

Uses of ScmFile in org.apache.maven.scm.command.status
 

Methods in org.apache.maven.scm.command.status that return types with arguments of type ScmFile
 List<ScmFile> StatusScmResult.getChangedFiles()
           
 

Constructor parameters in org.apache.maven.scm.command.status with type arguments of type ScmFile
StatusScmResult(List<ScmFile> changedFiles, ScmResult result)
           
StatusScmResult(String commandLine, List<ScmFile> changedFiles)
           
 

Uses of ScmFile in org.apache.maven.scm.command.tag
 

Methods in org.apache.maven.scm.command.tag that return types with arguments of type ScmFile
 List<ScmFile> TagScmResult.getTaggedFiles()
           
 

Constructor parameters in org.apache.maven.scm.command.tag with type arguments of type ScmFile
TagScmResult(List<ScmFile> taggedFiles, ScmResult result)
           
TagScmResult(String commandLine, List<ScmFile> taggedFiles)
           
 

Uses of ScmFile in org.apache.maven.scm.command.unedit
 

Methods in org.apache.maven.scm.command.unedit that return types with arguments of type ScmFile
 List<ScmFile> UnEditScmResult.getUnEditFiles()
           
 

Constructor parameters in org.apache.maven.scm.command.unedit with type arguments of type ScmFile
UnEditScmResult(List<ScmFile> unEditFiles, ScmResult result)
           
UnEditScmResult(String commandLine, List<ScmFile> unEditFiles)
           
 

Uses of ScmFile in org.apache.maven.scm.command.update
 

Methods in org.apache.maven.scm.command.update that return types with arguments of type ScmFile
 List<ScmFile> UpdateScmResult.getUpdatedFiles()
           
 

Constructor parameters in org.apache.maven.scm.command.update with type arguments of type ScmFile
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)
           
 



Copyright © 2003-2012 The Apache Software Foundation. All Rights Reserved.