Package org.eclipse.jgit.revwalk.filter
Class ObjectFilter.AllFilter
- java.lang.Object
-
- org.eclipse.jgit.revwalk.filter.ObjectFilter
-
- org.eclipse.jgit.revwalk.filter.ObjectFilter.AllFilter
-
- Enclosing class:
- ObjectFilter
private static final class ObjectFilter.AllFilter extends ObjectFilter
-
-
Field Summary
-
Fields inherited from class org.eclipse.jgit.revwalk.filter.ObjectFilter
ALL
-
-
Constructor Summary
Constructors Modifier Constructor Description private
AllFilter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
include(ObjectWalk walker, AnyObjectId o)
Determine if the named object should be included in the walk.
-
-
-
Method Detail
-
include
public boolean include(ObjectWalk walker, AnyObjectId o)
Description copied from class:ObjectFilter
Determine if the named object should be included in the walk.- Specified by:
include
in classObjectFilter
- Parameters:
walker
- the active walker this filter is being invoked from within.o
- the object currently being tested.- Returns:
true
if the named object should be included in the walk.
-
-