summaryrefslogtreecommitdiff
path: root/trunk/pdf-over-gui/src/main/java/at/asit/pdfover/gui/utils/LocaleSerializer.java
diff options
context:
space:
mode:
authorvkrnjic <vkrnjic@klio.iaik.tugraz.at>2012-11-07 10:15:15 +0100
committervkrnjic <vkrnjic@klio.iaik.tugraz.at>2012-11-07 10:15:15 +0100
commitf37e3df93655738dbe5e3ea77b764640f1bffbf6 (patch)
tree1e590a40767af5764d380a1305b9b07706cac012 /trunk/pdf-over-gui/src/main/java/at/asit/pdfover/gui/utils/LocaleSerializer.java
parent3bac2875cf14f09974835ad2e5d018d010cab95e (diff)
parentca6544acdadbc42dbbc9be68718782eeb815b0ad (diff)
downloadpdf-over-f37e3df93655738dbe5e3ea77b764640f1bffbf6.tar.gz
pdf-over-f37e3df93655738dbe5e3ea77b764640f1bffbf6.tar.bz2
pdf-over-f37e3df93655738dbe5e3ea77b764640f1bffbf6.zip
Merge branch 'master' of git@abyss:12PDF-OVER-4.0.git
Diffstat (limited to 'trunk/pdf-over-gui/src/main/java/at/asit/pdfover/gui/utils/LocaleSerializer.java')
-rw-r--r--trunk/pdf-over-gui/src/main/java/at/asit/pdfover/gui/utils/LocaleSerializer.java57
1 files changed, 57 insertions, 0 deletions
diff --git a/trunk/pdf-over-gui/src/main/java/at/asit/pdfover/gui/utils/LocaleSerializer.java b/trunk/pdf-over-gui/src/main/java/at/asit/pdfover/gui/utils/LocaleSerializer.java
new file mode 100644
index 00000000..fccbedc8
--- /dev/null
+++ b/trunk/pdf-over-gui/src/main/java/at/asit/pdfover/gui/utils/LocaleSerializer.java
@@ -0,0 +1,57 @@
+/*
+ * Copyright 2012 by A-SIT, Secure Information Technology Center Austria
+ *
+ * Licensed under the EUPL, Version 1.1 or - as soon they will be approved by
+ * the European Commission - subsequent versions of the EUPL (the "Licence");
+ * You may not use this work except in compliance with the Licence.
+ * You may obtain a copy of the Licence at:
+ * http://joinup.ec.europa.eu/software/page/eupl
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the Licence is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the Licence for the specific language governing permissions and
+ * limitations under the Licence.
+ */
+package at.asit.pdfover.gui.utils;
+
+// Imports
+import java.util.Locale;
+
+/**
+ *
+ */
+public class LocaleSerializer {
+
+ /**
+ * Parse a locale from a string
+ * @param localeString the string
+ * @return the locale
+ */
+ public static Locale parseFromString(String localeString) {
+
+ if(localeString == null || localeString.isEmpty()) {
+ return null;
+ }
+
+ Locale targetLocal = null;
+ Locale[] locale = Locale.getAvailableLocales();
+ for(int i = 0; i < locale.length; i++) {
+ if(locale[i].toString().equals(localeString)) {
+ targetLocal = locale[i];
+ break;
+ }
+ }
+ return targetLocal;
+ }
+
+ /**
+ * creates a parseable string for a locale
+ * @param locale the locale
+ * @return the parseable string
+ */
+ public static String getParseableString(Locale locale) {
+ return locale.toString();
+ }
+
+}