/**
* Constructs an elision filter with standard stop words
*/
protected ElisionFilter(TokenStream input) {
super(input);
this.articles = new CharArraySet(Arrays.asList(
"l", "m", "t", "qu", "n", "s", "j"), true);
termAtt = addAttribute(TermAttribute.class);
}