X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2Flibaddressinput%2Fsrc%2Fjava%2Fsrc%2Fcom%2Fandroid%2Fi18n%2Faddressinput%2FRegionData.java;h=62d3821dfd44d2693e61d4a03e7b585589ca16be;hb=1afa4dd80ef85af7c90efaea6959db1d92330844;hp=2b82c0a764aa0bb8bbaceacead8312a61c30ae48;hpb=90762837333c13ccf56f2ad88e4481fc71e8d281;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/RegionData.java b/src/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/RegionData.java index 2b82c0a..62d3821 100644 --- a/src/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/RegionData.java +++ b/src/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/RegionData.java @@ -21,87 +21,87 @@ package com.android.i18n.addressinput; */ class RegionData { - private String mKey; - private String mName; + private String key; + private String name; - /** - * Create a new RegionData object. - */ - private RegionData() { - } + /** + * Create a new RegionData object. + */ + private RegionData() { + } - /** - * Copy constructor. data should not be null. - * - * @param data A populated instance of RegionData - */ - private RegionData(RegionData data) { - Util.checkNotNull(data); - mKey = data.mKey; - mName = data.mName; - } + /** + * Copy constructor. data should not be null. + * + * @param data A populated instance of RegionData + */ + private RegionData(RegionData data) { + Util.checkNotNull(data); + key = data.key; + name = data.name; + } - /** - * Gets the key of the region. For example, California's key is "CA". - */ - String getKey() { - return mKey; - } + /** + * Gets the key of the region. For example, California's key is "CA". + */ + String getKey() { + return key; + } - /** - * Gets the name. Returns null if not specified. - */ - String getName() { - return mName; + /** + * Gets the name. Returns null if not specified. + */ + String getName() { + return name; + } + + /** + * Gets the best display name. Returns the name if this is not null, otherwise the key. + */ + public String getDisplayName() { + return (name != null) ? name : key; + } + + /** + * Checks if the input subkey is the name (in Latin or local script) of the region. Returns + * false if subkey is not a valid name for the region, or the input subkey is null. + * + * @param subkey a string that refers to the name of a geo location. Like "California", "CA", or + * "Mountain View". Names in the local script are also supported. + */ + boolean isValidName(String subkey) { + if (subkey == null) { + return false; + } + if (subkey.equalsIgnoreCase(key) || subkey.equalsIgnoreCase(name)) { + return true; } + return false; + } - /** - * Gets the best display name. Returns the name if this is not null, otherwise the key. - */ - public String getDisplayName() { - return (mName != null) ? mName : mKey; + /** + * A builder class to facilitate the creation of RegionData objects. + */ + static class Builder { + RegionData data = new RegionData(); + + RegionData build() { + return new RegionData(data); } - /** - * Checks if the input subkey is the name (in Latin or local script) of the region. Returns - * false if subkey is not a valid name for the region, or the input subkey is null. - * - * @param subkey a string that refers to the name of a geo location. Like "California", "CA", or - * "Mountain View". Names in the local script are also supported. - */ - boolean isValidName(String subkey) { - if (subkey == null) { - return false; - } - if (subkey.equalsIgnoreCase(mKey) || subkey.equalsIgnoreCase(mName)) { - return true; - } - return false; + Builder setKey(String key) { + Util.checkNotNull(key, "Key should not be null."); + data.key = key; + return this; } /** - * A builder class to facilitate the creation of RegionData objects. + * Sets name of the region. For example, "California". If the name is an empty string, sets + * it to null. */ - static class Builder { - RegionData mData = new RegionData(); - - RegionData build() { - return new RegionData(mData); - } - - Builder setKey(String key) { - Util.checkNotNull(key, "Key should not be null."); - mData.mKey = key; - return this; - } - - /** - * Sets name of the region. For example, "California". If the name is an empty string, sets - * it to null. - */ - Builder setName(String name) { - mData.mName = Util.trimToNull(name); - return this; - } + Builder setName(String name) { + data.name = Util.trimToNull(name); + return this; } + } }