Package | Description |
---|---|
org.eclipse.jgit.blame |
Computing blame/annotate information of files.
|
org.eclipse.jgit.revwalk |
Walking revision graphs (commit history).
|
org.eclipse.jgit.revwalk.filter |
Filters for use in revision walking.
|
Modifier and Type | Method and Description |
---|---|
RevFlag |
BlameGenerator.newFlag(String name)
Allocate a new RevFlag for use by the caller.
|
Modifier and Type | Field and Description |
---|---|
static RevFlag |
RevFlag.SEEN
Set on RevCommit instances added to
RevWalk.pending queue. |
static RevFlag |
RevFlag.UNINTERESTING
Uninteresting by
RevWalk.markUninteresting(RevCommit) . |
Modifier and Type | Method and Description |
---|---|
RevFlag |
DepthWalk.getReinterestingFlag()
Get flag marking commits that are interesting again.
|
RevFlag |
DepthWalk.RevWalk.getReinterestingFlag() |
RevFlag |
DepthWalk.ObjectWalk.getReinterestingFlag() |
RevFlag |
DepthWalk.getUnshallowFlag()
Get flag marking commits that should become unshallow.
|
RevFlag |
DepthWalk.RevWalk.getUnshallowFlag() |
RevFlag |
DepthWalk.ObjectWalk.getUnshallowFlag() |
RevFlag |
RevWalk.newFlag(String name)
Create a new flag for application use during walking.
|
Modifier and Type | Method and Description |
---|---|
Iterator<RevFlag> |
RevFlagSet.iterator() |
Modifier and Type | Method and Description |
---|---|
boolean |
RevFlagSet.add(RevFlag flag) |
void |
RevObject.add(RevFlag flag)
Add a flag to this object.
|
void |
RevCommitList.applyFlag(RevFilter matching,
RevFlag flag)
Apply a flag to all commits matching the specified filter.
|
void |
RevCommitList.applyFlag(RevFilter matching,
RevFlag flag,
int rangeBegin,
int rangeEnd)
Apply a flag to all commits matching the specified filter.
|
void |
RevCommit.carry(RevFlag flag)
Carry a RevFlag set on this commit to its parents.
|
void |
RevWalk.carry(RevFlag flag)
Automatically carry a flag from a child commit to its parents.
|
void |
RevCommitList.clearFlag(RevFlag flag)
Remove the given flag from all commits.
|
void |
RevCommitList.clearFlag(RevFlag flag,
int rangeBegin,
int rangeEnd)
Remove the given flag from all commits.
|
void |
RevWalk.disposeFlag(RevFlag flag)
Allow a flag to be recycled for a different use.
|
boolean |
RevObject.has(RevFlag flag)
Test to see if the flag has been set on this object.
|
int |
RevCommitList.indexOf(RevFlag flag,
int begin)
Find the next commit that has the given flag set.
|
int |
RevCommitList.lastIndexOf(RevFlag flag,
int begin)
Find the next commit that has the given flag set.
|
void |
RevObject.remove(RevFlag flag)
Remove a flag from this object.
|
void |
RevWalk.resetRetain(RevFlag... retainFlags)
Resets internal state and allows this instance to be used again.
|
void |
RevWalk.retainOnReset(RevFlag flag)
Preserve a RevFlag during all
reset methods. |
Modifier and Type | Method and Description |
---|---|
void |
RevWalk.carry(Collection<RevFlag> set)
Automatically carry flags from a child commit to its parents.
|
void |
RevWalk.retainOnReset(Collection<RevFlag> flags)
Preserve a set of RevFlags during all
reset methods. |
Constructor and Description |
---|
RevFlagSet(Collection<RevFlag> s)
Create a set of flags, copied from an existing collection.
|
Modifier and Type | Method and Description |
---|---|
static RevFilter |
RevFlagFilter.has(RevFlag a)
Create a new filter that tests for a single flag.
|
static RevFilter |
RevFlagFilter.hasAll(RevFlag... a)
Create a new filter that tests all flags in a set.
|
static RevFilter |
RevFlagFilter.hasAny(RevFlag... a)
Create a new filter that tests for any flag in a set.
|
Copyright © 2019 Eclipse JGit Project. All rights reserved.