C# Class GitSharp.Core.RevWalk.Filter.NotRevFilter

Includes a commit only if the subfilter does not include the commit.
Inheritance: RevFilter
Mostra file Open project: jagregory/GitSharp Class Usage Examples

Public Methods

Method Description
Clone ( ) : RevFilter
ToString ( ) : string
create ( RevFilter a ) : RevFilter

Create a filter that negates the result of another filter.

include ( RevWalk walker, RevCommit c ) : bool
negate ( ) : RevFilter

Private Methods

Method Description
NotRevFilter ( RevFilter one )

Method Details

Clone() public method

public Clone ( ) : RevFilter
return RevFilter

ToString() public method

public ToString ( ) : string
return string

create() public static method

Create a filter that negates the result of another filter.
public static create ( RevFilter a ) : RevFilter
a RevFilter Filter to negate.
return RevFilter

include() public method

public include ( RevWalk walker, RevCommit c ) : bool
walker RevWalk
c RevCommit
return bool

negate() public method

public negate ( ) : RevFilter
return RevFilter