aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/MetadataFileUriGetter.java
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2013-04-12 04:04:51 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-04-12 04:04:51 -0700
commit907a95c2f1f24b73736118ada0900228ad356734 (patch)
tree3585e6a5a12a9aad81c37d00577226d5dc06d039 /java/src/com/android/inputmethod/latin/MetadataFileUriGetter.java
parent0ea30200b4031815f81887ccacc605c23c7655b2 (diff)
parentfb5869e9ff378d6834d0eaf970543a2f417c4103 (diff)
downloadlatinime-907a95c2f1f24b73736118ada0900228ad356734.tar.gz
latinime-907a95c2f1f24b73736118ada0900228ad356734.tar.xz
latinime-907a95c2f1f24b73736118ada0900228ad356734.zip
am fb5869e9: Merge "Add a class to encapsulate getting the metadata URI"
* commit 'fb5869e9ff378d6834d0eaf970543a2f417c4103': Add a class to encapsulate getting the metadata URI
Diffstat (limited to 'java/src/com/android/inputmethod/latin/MetadataFileUriGetter.java')
-rw-r--r--java/src/com/android/inputmethod/latin/MetadataFileUriGetter.java28
1 files changed, 28 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/latin/MetadataFileUriGetter.java b/java/src/com/android/inputmethod/latin/MetadataFileUriGetter.java
new file mode 100644
index 000000000..e6dc6db8f
--- /dev/null
+++ b/java/src/com/android/inputmethod/latin/MetadataFileUriGetter.java
@@ -0,0 +1,28 @@
+/*
+ * Copyright (C) 2013 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.android.inputmethod.latin;
+
+import android.content.Context;
+
+/**
+ * Helper class to get the metadata URI.
+ */
+public class MetadataFileUriGetter {
+ public static String getMetadataUri(Context context) {
+ return context.getString(R.string.dictionary_pack_metadata_uri);
+ }
+}