Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/* LanguageTool, a natural language style checker
* Copyright (C) 2019 Daniel Naber (http://www.danielnaber.de)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
* USA
*/
package org.languagetool.language;
import org.languagetool.Language;
import org.languagetool.UserConfig;
import org.languagetool.rules.*;
import org.languagetool.rules.fa.*;
import org.languagetool.tokenizers.*;
import java.io.IOException;
import java.util.*;
/**
* Support for Persian.
* @since 2.7
*/
public class Persian extends Language {
@Override
public String getName() {
return "Persian";
}
@Override
public String getShortCode() {
return "fa";
}
@Override
public String[] getCountries() {
return new String[]{"IR", "AF"};
}
@Override
public SentenceTokenizer createDefaultSentenceTokenizer() {
return new SRXSentenceTokenizer(this);
}
@Override
public Tokenizer createDefaultWordTokenizer() {
return new PersianWordTokenizer();
}
@Override
public Contributor[] getMaintainers() {
return new Contributor[] {
new Contributor("Reza1615"),
new Contributor("Alireza Eskandarpour Shoferi"),
new Contributor("Ebrahim Byagowi")
};
}
@Override
public List getRelevantRules(ResourceBundle messages, UserConfig userConfig, Language motherTongue, List altLanguages) throws IOException {
return Arrays.asList(
new CommaWhitespaceRule(messages),
new DoublePunctuationRule(messages),
new MultipleWhitespaceRule(messages, this),
new LongSentenceRule(messages, userConfig, 50),
// specific to Persian:
new PersianCommaWhitespaceRule(messages),
new PersianDoublePunctuationRule(messages),
new PersianWordRepeatBeginningRule(messages, this),
new PersianWordRepeatRule(messages, this),
new SimpleReplaceRule(messages, this),
new PersianSpaceBeforeRule(messages, this),
new WordCoherencyRule(messages)
);
}
}