From 8987cccf89fe54b42125f9b05069152db91e31f7 Mon Sep 17 00:00:00 2001 From: Jean Chalard Date: Thu, 11 Apr 2013 17:52:16 +0900 Subject: Add a class to encapsulate getting the metadata URI Bug: 8376173 Change-Id: Icaac8ad412e0180c44e6a955943e3b208981b2ea --- .../inputmethod/latin/MetadataFileUriGetter.java | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 java/src/com/android/inputmethod/latin/MetadataFileUriGetter.java (limited to 'java/src/com/android/inputmethod/latin/MetadataFileUriGetter.java') 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); + } +} -- cgit v1.2.3-83-g751a