/**@class android.os.SystemProperties @extends java.lang.Object Gives access to the system properties store. The system properties store contains a list of string key-value pairs. {@hide} */ var SystemProperties = { /***/ PROP_NAME_MAX : "31", /***/ PROP_VALUE_MAX : "91", /**Get the value for the given key. @return {String} an empty string if the key isn't found @throws IllegalArgumentException if the key exceeds 32 characters */ get : function( ) {}, /**Get the value for the given key. @return {String} if the key isn't found, return def if it isn't null, or an empty string otherwise @throws IllegalArgumentException if the key exceeds 32 characters */ get : function( ) {}, /**Get the value for the given key, and return as an integer. @param {String} key the key to lookup @param {Number} def a default value to return @return {Number} the key parsed as an integer, or def if the key isn't found or cannot be parsed @throws IllegalArgumentException if the key exceeds 32 characters */ getInt : function( ) {}, /**Get the value for the given key, and return as a long. @param {String} key the key to lookup @param {Number} def a default value to return @return {Number} the key parsed as a long, or def if the key isn't found or cannot be parsed @throws IllegalArgumentException if the key exceeds 32 characters */ getLong : function( ) {}, /**Get the value for the given key, returned as a boolean. Values 'n', 'no', '0', 'false' or 'off' are considered false. Values 'y', 'yes', '1', 'true' or 'on' are considered true. (case sensitive). If the key does not exist, or has any other value, then the default result is returned. @param {String} key the key to lookup @param {Boolean} def a default value to return @return {Boolean} the key parsed as a boolean, or def if the key isn't found or is not able to be parsed as a boolean. @throws IllegalArgumentException if the key exceeds 32 characters */ getBoolean : function( ) {}, /**Set the value for the given key. @throws IllegalArgumentException if the key exceeds 32 characters @throws IllegalArgumentException if the value exceeds 92 characters */ set : function( ) {}, /** */ addChangeCallback : function( ) {}, };