summaryrefslogtreecommitdiff
path: root/isoparser/src/main/java/com/coremedia/iso/boxes/apple/.svn/text-base/AppleStoreCountryCodeBox.java.svn-base
diff options
context:
space:
mode:
Diffstat (limited to 'isoparser/src/main/java/com/coremedia/iso/boxes/apple/.svn/text-base/AppleStoreCountryCodeBox.java.svn-base')
-rw-r--r--isoparser/src/main/java/com/coremedia/iso/boxes/apple/.svn/text-base/AppleStoreCountryCodeBox.java.svn-base54
1 files changed, 0 insertions, 54 deletions
diff --git a/isoparser/src/main/java/com/coremedia/iso/boxes/apple/.svn/text-base/AppleStoreCountryCodeBox.java.svn-base b/isoparser/src/main/java/com/coremedia/iso/boxes/apple/.svn/text-base/AppleStoreCountryCodeBox.java.svn-base
deleted file mode 100644
index 2c4756a..0000000
--- a/isoparser/src/main/java/com/coremedia/iso/boxes/apple/.svn/text-base/AppleStoreCountryCodeBox.java.svn-base
+++ /dev/null
@@ -1,54 +0,0 @@
-package com.coremedia.iso.boxes.apple;
-
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- * itunes MetaData comment box.
- */
-public class AppleStoreCountryCodeBox extends AbstractAppleMetaDataBox {
- private static Map<String, String> countryCodes = new HashMap<String, String>();
-
- static {
- countryCodes.put("143460", "Australia");
- countryCodes.put("143445", "Austria");
- countryCodes.put("143446", "Belgium");
- countryCodes.put("143455", "Canada");
- countryCodes.put("143458", "Denmark");
- countryCodes.put("143447", "Finland");
- countryCodes.put("143442", "France");
- countryCodes.put("143443", "Germany");
- countryCodes.put("143448", "Greece");
- countryCodes.put("143449", "Ireland");
- countryCodes.put("143450", "Italy");
- countryCodes.put("143462", "Japan");
- countryCodes.put("143451", "Luxembourg");
- countryCodes.put("143452", "Netherlands");
- countryCodes.put("143461", "New Zealand");
- countryCodes.put("143457", "Norway");
- countryCodes.put("143453", "Portugal");
- countryCodes.put("143454", "Spain");
- countryCodes.put("143456", "Sweden");
- countryCodes.put("143459", "Switzerland");
- countryCodes.put("143444", "United Kingdom");
- countryCodes.put("143441", "United States");
- }
-
- public static final String TYPE = "sfID";
-
-
- public AppleStoreCountryCodeBox() {
- super(TYPE);
- appleDataBox = AppleDataBox.getUint32AppleDataBox();
- }
-
-
- public String getReadableValue() {
- if (countryCodes.containsKey(getValue())) {
- return countryCodes.get(getValue());
- } else {
- return "unknown country code " + getValue();
- }
-
- }
-} \ No newline at end of file