if (lang.equalsIgnoreCase("Spanish")) {
this.cleaner = new SpanishWikiPageCleaner(this.title, rawText);
}
else if (lang.equalsIgnoreCase("Portuguese")) {
this.cleaner = new PortugueseWikiPageCleaner(this.title, rawText);
}
else {
this.cleaner = new EnglishWikiPageCleaner(this.title, rawText);
}
}