blob: 1e7564e81a9a355fce7036c3b094f34bf16ab496 [file] [log] [blame]
Adam Lesinskiab775ec2014-01-23 18:17:42 -08001/*
Deepanshu Gupta0bec6852014-05-15 09:30:11 -07002 * Copyright (C) 2014 The Android Open Source Project
Adam Lesinskiab775ec2014-01-23 18:17:42 -08003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.os;
18
19import com.android.layoutlib.bridge.Bridge;
20import com.android.layoutlib.bridge.impl.DelegateManager;
21import com.android.tools.layoutlib.annotations.LayoutlibDelegate;
22
23import java.util.Map;
24
25/**
Deepanshu Gupta0bec6852014-05-15 09:30:11 -070026 * Delegate implementing the native methods of android.os.SystemProperties
Adam Lesinskiab775ec2014-01-23 18:17:42 -080027 *
Deepanshu Gupta0bec6852014-05-15 09:30:11 -070028 * Through the layoutlib_create tool, the original native methods of SystemProperties have been
29 * replaced by calls to methods of the same name in this delegate class.
Adam Lesinskiab775ec2014-01-23 18:17:42 -080030 *
31 * Because it's a stateless class to start with, there's no need to keep a {@link DelegateManager}
32 * around to map int to instance of the delegate.
Adam Lesinskiab775ec2014-01-23 18:17:42 -080033 */
Deepanshu Gupta0bec6852014-05-15 09:30:11 -070034public class SystemProperties_Delegate {
Adam Lesinskiab775ec2014-01-23 18:17:42 -080035
36 @LayoutlibDelegate
Deepanshu Gupta0bec6852014-05-15 09:30:11 -070037 /*package*/ static String native_get(String key) {
38 return native_get(key, "");
39 }
40
41 @LayoutlibDelegate
42 /*package*/ static String native_get(String key, String def) {
Adam Lesinskiab775ec2014-01-23 18:17:42 -080043 Map<String, String> properties = Bridge.getPlatformProperties();
Deepanshu Gupta0bec6852014-05-15 09:30:11 -070044 String value = properties.get(key);
Adam Lesinskiab775ec2014-01-23 18:17:42 -080045 if (value != null) {
46 return value;
47 }
48
Deepanshu Gupta0bec6852014-05-15 09:30:11 -070049 return def;
Adam Lesinskiab775ec2014-01-23 18:17:42 -080050 }
Adam Lesinskiab775ec2014-01-23 18:17:42 -080051}