org.languagetool.Premium Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of languagetool-core Show documentation
Show all versions of languagetool-core Show documentation
LanguageTool is an Open Source proofreading software for English, French, German, Polish, Romanian, and more than 20 other languages. It finds many errors that a simple spell checker cannot detect like mixing up there/their and it detects some grammar problems.
/* LanguageTool, a natural language style checker
* Copyright (C) 2021 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;
import org.languagetool.markup.AnnotatedText;
import org.languagetool.rules.Rule;
import java.lang.reflect.Constructor;
import java.util.Arrays;
import java.util.List;
import java.util.Set;
/**
* Information about premium-only rules.
*/
public abstract class Premium {
private static List tempNotPremiumRules = Arrays.asList();
public static boolean isTempNotPremium(Rule rule) {
return tempNotPremiumRules.contains(rule.getId());
}
public static boolean isPremiumStatusCheck(AnnotatedText text) {
final String testRuleText = "languagetool testrule 8634756";
final String testRuleText2 = "The languagetool testrule 8634756.";
return testRuleText2.equals(text.getOriginalText()) || testRuleText.equals(text.getOriginalText());
}
public static Premium get() {
String className = "org.languagetool.PremiumOn";
try {
Class> aClass = JLanguageTool.getClassBroker().forName(className);
Constructor> constructor = aClass.getConstructor();
return (Premium)constructor.newInstance();
} catch (ClassNotFoundException e) {
// 'PremiumOn' doesn't exist, thus this is the non-premium version
return new PremiumOff();
} catch (Exception e) {
throw new RuntimeException("Object for class '" + className + "' could not be created", e);
}
}
public static boolean isPremiumVersion() {
String className = "org.languagetool.PremiumOn";
try {
Class> aClass = JLanguageTool.getClassBroker().forName(className);
Constructor> constructor = aClass.getConstructor();
constructor.newInstance();
return true;
} catch (ClassNotFoundException e) {
// doesn't exist, thus this is the non-premium version
return false;
} catch (Exception e) {
throw new RuntimeException("Object for class '" + className + "' could not be created", e);
}
}
public abstract boolean isPremiumRule(Rule rule);
}