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

Abstract filter that searches text using only substring search.
Inheritance: RevFilter
Mostra file Open project: jagregory/GitSharp Class Usage Examples

Public Methods

Method Description
Clone ( ) : RevFilter
ToString ( ) : string
include ( RevWalk walker, RevCommit commit ) : bool
safe ( string pattern ) : bool

Can this string be safely handled by a substring filter?

Protected Methods

Method Description
Text ( RevCommit cmit ) : string

Obtain the raw text to match against.

Private Methods

Method Description
SubStringRevFilter ( string patternText ) : System

Construct a new matching filter.

Method Details

Clone() public method

public Clone ( ) : RevFilter
return RevFilter

Text() protected abstract method

Obtain the raw text to match against.
protected abstract Text ( RevCommit cmit ) : string
cmit RevCommit Current commit being evaluated.
return string

ToString() public method

public ToString ( ) : string
return string

include() public method

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

safe() public static method

Can this string be safely handled by a substring filter?
public static safe ( string pattern ) : bool
pattern string /// the pattern text proposed by the user. ///
return bool