]> git.mxchange.org Git - jcountry-core.git/commitdiff
It is the dial-prefix for making calls outside local city (mostly 0).
authorRoland Haeder <roland@mxchange.org>
Mon, 11 Apr 2016 12:14:27 +0000 (14:14 +0200)
committerRoland Haeder <roland@mxchange.org>
Mon, 11 Apr 2016 12:14:27 +0000 (14:14 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
src/org/mxchange/jcountry/data/Country.java
src/org/mxchange/jcountry/data/CountryData.java

index e76d6560e70bf01522ed92ee287bc4b031039b87..90b46cbb94d111b93e6adb875501b4f63dde8af8 100644 (file)
@@ -36,9 +36,9 @@ public interface Country extends Serializable {
        /**
         * Setter for country code (example: 49 for Germany, 63 for Philippines)
         * <p>
-        * @param phoneCountryCode Country code
+        * @param countryPhoneCode Country code
         */
-       void setCountryPhoneCode (final Short phoneCountryCode);
+       void setCountryPhoneCode (final Short countryPhoneCode);
 
        /**
         * Getter for id number
@@ -73,14 +73,14 @@ public interface Country extends Serializable {
         * <p>
         * @return Local dial prefix
         */
-       String getCountryLocalDialPrefix ();
+       String getCountryExternalDialPrefix ();
 
        /**
         * Setter for local dial prefix
         * <p>
-        * @param countryLocalDialPrefix Local dial prefix
+        * @param countryExternalDialPrefix Local dial prefix
         */
-       void setCountryLocalDialPrefix (final String countryLocalDialPrefix);
+       void setCountryExternalDialPrefix (final String countryExternalDialPrefix);
 
        /**
         * Getter for abroad dial prefix
@@ -106,9 +106,9 @@ public interface Country extends Serializable {
        /**
         * Setter for i18n key for country name
         * <p>
-        * @param countryI18nkey i18n key for country name
+        * @param countryI18nKey i18n key for country name
         */
-       void setCountryI18nkey (final String countryI18nkey);
+       void setCountryI18nkey (final String countryI18nKey);
 
        /**
         * Getter for whether the local dial prefix is required for local calls
@@ -120,8 +120,7 @@ public interface Country extends Serializable {
        /**
         * Setter for whether the local dial prefix is required for local calls
         * <p>
-        * @param countryIsLocalPrefixRequired Whether the local dial prefix is
-        *                                     required
+        * @param countryIsLocalPrefixRequired Whether the local dial prefix is required
         */
        void setCountryIsLocalPrefixRequired (final Boolean countryIsLocalPrefixRequired);
 
@@ -144,4 +143,5 @@ public interface Country extends Serializable {
 
        @Override
        int hashCode ();
+
 }
index 450d07995438b69722329f18f0fe7dcfc655ff56..1a705230a4daeb7ae008cccfb795cfb8a7a3e805 100644 (file)
@@ -95,12 +95,12 @@ public class CountryData implements Country {
        private Boolean countryIsLocalPrefixRequired;
 
        /**
-        * Dial prefix to be dialed before the area/city number is dialed locally.
+        * Dial prefix to be dialed before the area/city number is dialed.
         * In Germany, this is 0.
         */
        @Basic (optional = false)
-       @Column (name = "country_local_dial_prefix", length = 10)
-       private String countryLocalDialPrefix;
+       @Column (name = "country_exyernal_dial_prefix", length = 10)
+       private String countryExternalDialPrefix;
 
        /**
         * 2-digit country's phone code (example: 49 for Germany, 63 for
@@ -191,13 +191,13 @@ public class CountryData implements Country {
        }
 
        @Override
-       public String getCountryLocalDialPrefix () {
-               return this.countryLocalDialPrefix;
+       public String getCountryExternalDialPrefix () {
+               return this.countryExternalDialPrefix;
        }
 
        @Override
-       public void setCountryLocalDialPrefix (final String countryLocalDialPrefix) {
-               this.countryLocalDialPrefix = countryLocalDialPrefix;
+       public void setCountryExternalDialPrefix (final String countryExternalDialPrefix) {
+               this.countryExternalDialPrefix = countryExternalDialPrefix;
        }
 
        @Override