Ejemplo n.º 1
0
 internal bool isWordBanned(string word, EdictMatchType matchType)
 {
     return((matchType == EdictMatchType.KANJI ? bannedWords : bannedWordsKana).ContainsKey(word));
 }
Ejemplo n.º 2
0
 public EdictMatchWithType(EdictMatch match, EdictMatchType matchType)
 {
     this.match     = match;
     this.matchType = matchType;
 }
Ejemplo n.º 3
0
 internal void addBannedWord(string word, EdictMatchType matchType)
 {
     isBannedWordsDirty = (matchType == EdictMatchType.KANJI ? bannedWords : bannedWordsKana).TryAdd(word, true) || isBannedWordsDirty;
 }
Ejemplo n.º 4
0
 public EdictMatchWithType(EdictMatch match, EdictMatchType matchType)
 {
     this.match = match;
     this.matchType = matchType;
 }