Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / libaddressinput / src / java / src / com / android / i18n / addressinput / RegionData.java
index 2b82c0a..62d3821 100644 (file)
@@ -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;
     }
+  }
 }