C# Class ICSharpCode.TextEditor.Util.LookupTable

This class implements a keyword map. It implements a digital search trees (tries) to find a word.
Afficher le fichier Open project: Clancey/MonoMac.Windows.Form Class Usage Examples

Méthodes publiques

Méthode Description
LookupTable ( bool casesensitive ) : System

Creates a new instance of LookupTable

this ( IDocument document, LineSegment line, int offset, int length ) : object

Get the object, which was inserted under the keyword (line, at offset, with length length), returns null, if no such keyword was inserted.

this ( string keyword ) : object

Inserts an object in the tree, under keyword

Method Details

LookupTable() public méthode

Creates a new instance of LookupTable
public LookupTable ( bool casesensitive ) : System
casesensitive bool
Résultat System

this() public méthode

Get the object, which was inserted under the keyword (line, at offset, with length length), returns null, if no such keyword was inserted.
public this ( IDocument document, LineSegment line, int offset, int length ) : object
document IDocument
line ICSharpCode.TextEditor.Document.LineSegment
offset int
length int
Résultat object

this() public méthode

Inserts an object in the tree, under keyword
public this ( string keyword ) : object
keyword string
Résultat object