Ejemplo n.º 1
0
 /// <summary>Construct a token stream processing the given input using the given AttributeSource. </summary>
 protected internal Tokenizer(AttributeSource source, System.IO.TextReader input) : base(source)
 {
     this.input = CharReader.Get(input);
 }
Ejemplo n.º 2
0
 /// <summary>Construct a token stream processing the given input. </summary>
 protected internal Tokenizer(System.IO.TextReader input)
 {
     this.input = CharReader.Get(input);
 }
Ejemplo n.º 3
0
 /// <summary>Construct a token stream processing the given input using the given AttributeFactory. </summary>
 protected internal Tokenizer(AttributeFactory factory, System.IO.TextReader input) : base(factory)
 {
     this.input = CharReader.Get(input);
 }
Ejemplo n.º 4
0
 /// Easy-use constructor that takes a {@link Reader}.
 public MappingCharFilter(NormalizeCharMap normMap, System.IO.TextReader in_Renamed) : base(CharReader.Get(in_Renamed))
 {
     this.normMap = normMap;
 }