Uses of Class
org.eclipse.jgit.treewalk.WorkingTreeIterator
-
Packages that use WorkingTreeIterator Package Description org.eclipse.jgit.api High-level API commands (the porcelain of JGit).org.eclipse.jgit.attributes Support for reading .gitattributes.org.eclipse.jgit.diff Comparing file contents by computing diffs.org.eclipse.jgit.dircache Reading and editing the directory cache (index).org.eclipse.jgit.lib Core API for repository, config, refs, object database.org.eclipse.jgit.merge Content and commit history merge algorithms.org.eclipse.jgit.treewalk Walking and comparing directory/file trees (of commits, file system).org.eclipse.jgit.treewalk.filter Filters for use in tree walking. -
-
Uses of WorkingTreeIterator in org.eclipse.jgit.api
Fields in org.eclipse.jgit.api declared as WorkingTreeIterator Modifier and Type Field Description private WorkingTreeIteratorStatusCommand. workingTreeItprivate WorkingTreeIteratorAddCommand. workingTreeIteratorMethods in org.eclipse.jgit.api with parameters of type WorkingTreeIterator Modifier and Type Method Description StatusCommandStatusCommand. setWorkingTreeIt(WorkingTreeIterator workingTreeIt)To set theWorkingTreeIteratorwhich should be used.AddCommandAddCommand. setWorkingTreeIterator(WorkingTreeIterator f)Allow clients to provide their own implementation of a FileTreeIterator -
Uses of WorkingTreeIterator in org.eclipse.jgit.attributes
Methods in org.eclipse.jgit.attributes with parameters of type WorkingTreeIterator Modifier and Type Method Description private static AttributesNodeAttributesHandler. attributesNode(TreeWalk treeWalk, WorkingTreeIterator workingTreeIterator, DirCacheIterator dirCacheIterator, CanonicalTreeParser otherTree)Get theAttributesNodefor the current entry.private voidAttributesHandler. mergePerDirectoryEntryAttributes(java.lang.String entryPath, int nameRoot, boolean isDirectory, WorkingTreeIterator workingTreeIterator, DirCacheIterator dirCacheIterator, CanonicalTreeParser otherTree, Attributes result)Merges the matching working directory attributes for an entry path. -
Uses of WorkingTreeIterator in org.eclipse.jgit.diff
Fields in org.eclipse.jgit.diff declared as WorkingTreeIterator Modifier and Type Field Description private WorkingTreeIteratorContentSource.WorkingTreeSource. iterator(package private) WorkingTreeIteratorContentSource.WorkingTreeSource. ptrMethods in org.eclipse.jgit.diff with parameters of type WorkingTreeIterator Modifier and Type Method Description static ContentSourceContentSource. create(WorkingTreeIterator iterator)Construct a content source for a working directory.Constructors in org.eclipse.jgit.diff with parameters of type WorkingTreeIterator Constructor Description WorkingTreeSource(WorkingTreeIterator iterator) -
Uses of WorkingTreeIterator in org.eclipse.jgit.dircache
Fields in org.eclipse.jgit.dircache declared as WorkingTreeIterator Modifier and Type Field Description private WorkingTreeIteratorDirCacheCheckout. workingTreeMethods in org.eclipse.jgit.dircache with parameters of type WorkingTreeIterator Modifier and Type Method Description private voidDirCacheCheckout. keep(java.lang.String path, DirCacheEntry e, WorkingTreeIterator f)(package private) voidDirCacheCheckout. processEntry(CanonicalTreeParser m, DirCacheBuildIterator i, WorkingTreeIterator f)Processing an entry in the context ofDirCacheCheckout.prescanOneTree()when only one tree is given(package private) voidDirCacheCheckout. processEntry(CanonicalTreeParser h, CanonicalTreeParser m, DirCacheBuildIterator i, WorkingTreeIterator f)Here the main work is done.Constructors in org.eclipse.jgit.dircache with parameters of type WorkingTreeIterator Constructor Description DirCacheCheckout(Repository repo, DirCache dc, ObjectId mergeCommitTree, WorkingTreeIterator workingTree)Constructs a DirCacheCeckout for checking out one tree, merging with the index.DirCacheCheckout(Repository repo, ObjectId headCommitTree, DirCache dc, ObjectId mergeCommitTree, WorkingTreeIterator workingTree)Constructs a DirCacheCeckout for merging and checking out two trees (HEAD and mergeCommitTree) and the index. -
Uses of WorkingTreeIterator in org.eclipse.jgit.lib
Fields in org.eclipse.jgit.lib declared as WorkingTreeIterator Modifier and Type Field Description private WorkingTreeIteratorIndexDiff. initialWorkingTreeIteratorMethods in org.eclipse.jgit.lib that return WorkingTreeIterator Modifier and Type Method Description WorkingTreeIteratorIndexDiff.WorkingTreeIteratorFactory. getWorkingTreeIterator(Repository repo)Constructors in org.eclipse.jgit.lib with parameters of type WorkingTreeIterator Constructor Description IndexDiff(Repository repository, java.lang.String revstr, WorkingTreeIterator workingTreeIterator)Construct an IndexDiffIndexDiff(Repository repository, ObjectId objectId, WorkingTreeIterator workingTreeIterator)Construct an Indexdiff -
Uses of WorkingTreeIterator in org.eclipse.jgit.merge
Fields in org.eclipse.jgit.merge declared as WorkingTreeIterator Modifier and Type Field Description protected WorkingTreeIteratorResolveMerger. workingTreeIteratorThe iterator to access the working tree.Methods in org.eclipse.jgit.merge with parameters of type WorkingTreeIterator Modifier and Type Method Description private booleanResolveMerger. isWorktreeDirty(WorkingTreeIterator work, DirCacheEntry ourDce)protected booleanResolveMerger. processEntry(CanonicalTreeParser base, CanonicalTreeParser ours, CanonicalTreeParser theirs, DirCacheBuildIterator index, WorkingTreeIterator work, boolean ignoreConflicts, Attributes attributes)Processes one path and tries to merge taking git attributes in account.voidResolveMerger. setWorkingTreeIterator(WorkingTreeIterator workingTreeIterator)Sets the WorkingTreeIterator to be used by this merger. -
Uses of WorkingTreeIterator in org.eclipse.jgit.treewalk
Subclasses of WorkingTreeIterator in org.eclipse.jgit.treewalk Modifier and Type Class Description classFileTreeIteratorWorking directory iterator for standard Java IO.Constructors in org.eclipse.jgit.treewalk with parameters of type WorkingTreeIterator Constructor Description FileTreeIterator(WorkingTreeIterator p, java.io.File root, FS fs, FileTreeIterator.FileModeStrategy fileModeStrategy)Create a new iterator to traverse a subdirectory, given the specified FileModeStrategy.WorkingTreeIterator(WorkingTreeIterator p)Create an iterator for a subtree of an existing iterator. -
Uses of WorkingTreeIterator in org.eclipse.jgit.treewalk.filter
Methods in org.eclipse.jgit.treewalk.filter that return WorkingTreeIterator Modifier and Type Method Description private WorkingTreeIteratorIndexDiffFilter. workingTree(TreeWalk tw)
-