SILUBS.ScriptureChecks.ProcessPunctationTokens.ProcessPunctationTokens C# (CSharp) Method

ProcessPunctationTokens() public method

Initializes a new instance of the ProcessPunctationTokens class.
public ProcessPunctationTokens ( CharacterCategorizer categorizer, QuotationMarkCategorizer quotationCategorizer, CheckingLevel level ) : System
categorizer SILUBS.SharedScrUtils.CharacterCategorizer The categorizer.
quotationCategorizer QuotationMarkCategorizer The quotation categorizer.
level CheckingLevel Indicator to determine how much to combine contiguous /// punctuation sequences into patterns. Advanced = All contiguous punctuation and /// whitespace characters form a single pattern; Intermediate = Contiguous punctuation /// forms a single pattern (delimeted by whitespace); Basic = Each punctuation character /// stands alone. In all three modes, whitespace before and/or after a punctuation token /// indicates whether is is word-initial, word-medial, word-final, or isolated
return System
		public ProcessPunctationTokens(CharacterCategorizer categorizer,
			QuotationMarkCategorizer quotationCategorizer, CheckingLevel level)
		{
			m_categorizer = categorizer;
			m_quotationCategorizer = quotationCategorizer;
			m_level = level;
		}