okw.OKWLanguage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
This is the core-module of OpenKeyWord. This module is automatically integrated by the adapters. In GUI automation, the core module is automatically integrated by the GUI modules (dependencies).
/*
==============================================================================
Author: Zoltán Hrabovszki
Copyright © 2012 - 2019 IT-Beratung Hrabovszki
www.OpenKeyWord.de
==============================================================================
This file is part of OpenKeyWord.
OpenKeyWord is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OpenKeyWord 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with OpenKeyWord. If not, see .
Diese Datei ist Teil von OpenKeyWord.
OpenKeyWord ist Freie Software: Sie können es unter den Bedingungen
der GNU General Public License, wie von der Free Software Foundation,
Version 3 der Lizenz oder (nach Ihrer Wahl) jeder späteren
veröffentlichten Version, weiterverbreiten und/oder modifizieren.
OpenKeyWord wird in der Hoffnung, dass es nützlich sein wird, aber
OHNE JEDE GEWÄHRLEISTUNG, bereitgestellt; sogar ohne die implizite
Gewährleistung der MARKTFÄHIGKEIT oder EIGNUNG FÜR EINEN BESTIMMTEN ZWECK.
Siehe die GNU General Public License für weitere Details.
Sie sollten eine Kopie der GNU General Public License zusammen mit
OpenKeyWord erhalten haben. Wenn nicht, siehe .
*/
package okw;
import java.util.ArrayList;
import okw.exceptions.OKWLanguageNotImplemntedException;
/// http://de.wikipedia.org/wiki/ISO-3166-1-Kodierliste
///
public class OKWLanguage {
private static OKWLanguage Instance;
protected static OKW_Properties PROP = OKW_Properties.getInstance();
public static OKWLanguage getInstance()
{
// Lazy Initialization (If required then only)
if (Instance == null)
{
// Thread Safe. Might be costly operation in some case
synchronized (OKW_Ini_Sngltn.class)
{
if (Instance == null)
{
Instance = new OKWLanguage();
}
}
}
return Instance;
}
/// \brief
/// Enthält die Liste der implemntierten Sprachen
private static ArrayList cvLsLanguagesImplemented = new ArrayList();
private OKWLanguage() {
cvLsLanguagesImplemented.add("en");
cvLsLanguagesImplemented.add("de");
PROP.setProperty( "LANGUAGE", this.Language );
}
/// \brief
/// Gets or sets a string property.
///
private String Language = "en";
public String getLanguage()
{
return this.Language.toLowerCase();
}
/**
* \~german
* Wählt die sprache von OKW, default Sprache ist "en"
*
* @param value Sprache die gewählt weden soll. - Mmögliche Werte "en", "de"
*
* \~english
*
*
* @param ?
* @return
* \~
* @author Zoltán Hrabovszki
* @date 2019-12-30
*/
public void setLanguage( String value )
{
if ( -1 < cvLsLanguagesImplemented.indexOf( value.toLowerCase() ) )
{
this.Language = value.toLowerCase();
PROP.setProperty( "LANGUAGE", this.Language );
}
else
{
throw new OKWLanguageNotImplemntedException();
}
}
}