* x.0: |
- * The rule is a master rule. If the full stop in
+ * | The rule is a default rule. If the full stop in
* the middle of the rule name is replaced with the decimal point
* that is used in the language or DecimalFormatSymbols, then that rule will
* have precedence when formatting and parsing this rule. For example, some
@@ -332,9 +332,9 @@ enum URBNFRuleSetTag {
* algorithms: If the rule set is a regular rule set, do the following:
*
*
- * - If the rule set includes a master rule (and the number was passed in as a double),
- * use the master rule. (If the number being formatted was passed in as a long,
- * the master rule is ignored.)
+ * - If the rule set includes a default rule (and the number was passed in as a double),
+ * use the default rule. (If the number being formatted was passed in as a long,
+ * the default rule is ignored.)
* - If the number is negative, use the negative-number rule.
* - If the number has a fractional part and is greater than 1, use the improper fraction
* rule.
@@ -393,7 +393,7 @@ enum URBNFRuleSetTag {
* |
*
* |
* x.0: |
- * The rule is a master rule. If the full stop in
+ * | The rule is a default rule. If the full stop in
* the middle of the rule name is replaced with the decimal point
* that is used in the language or DecimalFormatSymbols, then that rule will
* have precedence when formatting and parsing this rule. For example, some
@@ -313,9 +313,9 @@ import com.ibm.icu.util.UResourceBundleIterator;
* algorithms: If the rule set is a regular rule set, do the following:
*
*
- * - If the rule set includes a master rule (and the number was passed in as a double),
- * use the master rule. (If the number being formatted was passed in as a long,
- * the master rule is ignored.)
+ * - If the rule set includes a default rule (and the number was passed in as a double),
+ * use the default rule. (If the number being formatted was passed in as a long,
+ * the default rule is ignored.)
* - If the number is negative, use the negative-number rule.
* - If the number has a fractional part and is greater than 1, use the improper fraction
* rule.
@@ -377,7 +377,7 @@ import com.ibm.icu.util.UResourceBundleIterator;
*
* |
* |
- * in fraction or master rule |
+ * in fraction or default rule |
* Isolate the number's fractional part and format it. |
*
*
@@ -415,7 +415,7 @@ import com.ibm.icu.util.UResourceBundleIterator;
*
* |
* |
- * in fraction or master rule |
+ * in fraction or default rule |
* Isolate the number's integral part and format it. |
*
*
@@ -452,7 +452,7 @@ import com.ibm.icu.util.UResourceBundleIterator;
*
* |
* |
- * in master rule |
+ * in default rule |
* Omit the optional text if the number is an integer (same as specifying both an x.x
* rule and an x.0 rule) |
*
@@ -1153,7 +1153,7 @@ public class RuleBasedNumberFormat extends NumberFormat {
/**
* Formats the specified number according to the specified rule set.
- * (If the specified rule set specifies a master ["x.0"] rule, this function
+ * (If the specified rule set specifies a default ["x.0"] rule, this function
* ignores it. Convert the number to a double first if you ned it.) This
* function preserves all the precision in the long-- it doesn't convert it
* to a double.
@@ -1199,7 +1199,7 @@ public class RuleBasedNumberFormat extends NumberFormat {
/**
* Formats the specified number using the formatter's default rule set.
* (The default rule set is the last public rule set defined in the description.)
- * (If the specified rule set specifies a master ["x.0"] rule, this function
+ * (If the specified rule set specifies a default ["x.0"] rule, this function
* ignores it. Convert the number to a double first if you ned it.) This
* function preserves all the precision in the long-- it doesn't convert it
* to a double.
diff --git a/icu4j/main/classes/core/src/com/ibm/icu/util/Region.java b/icu4j/main/classes/core/src/com/ibm/icu/util/Region.java
index 2fabbb0c4ce..b158af355eb 100644
--- a/icu4j/main/classes/core/src/com/ibm/icu/util/Region.java
+++ b/icu4j/main/classes/core/src/com/ibm/icu/util/Region.java
@@ -215,7 +215,7 @@ public class Region implements Comparable {
regions = new ArrayList(regionCodes.size());
- // First process the region codes and create the master array of regions.
+ // First process the region codes and create the primary array of regions.
for ( String id : regionCodes) {
Region r = new Region();
r.id = id;
@@ -244,7 +244,7 @@ public class Region implements Comparable {
Region r;
if ( regionIDMap.containsKey(aliasFrom) ) { // This is a deprecated region
r = regionIDMap.get(aliasFrom);
- } else { // Deprecated region code not in the master codes list - so need to create a deprecated region for it.
+ } else { // Deprecated region code not in the primary codes list - so need to create a deprecated region for it.
r = new Region();
r.id = aliasFrom;
regionIDMap.put(aliasFrom, r);
diff --git a/icu4j/main/classes/translit/src/com/ibm/icu/text/TransliteratorParser.java b/icu4j/main/classes/translit/src/com/ibm/icu/text/TransliteratorParser.java
index 5398021bf56..d578e2f90ad 100644
--- a/icu4j/main/classes/translit/src/com/ibm/icu/text/TransliteratorParser.java
+++ b/icu4j/main/classes/translit/src/com/ibm/icu/text/TransliteratorParser.java
@@ -1493,7 +1493,7 @@ class TransliteratorParser {
throw new RuntimeException("Variable range exhausted");
}
c = variableNext++;
- // Set a placeholder in the master variables vector that will be
+ // Set a placeholder in the primary variables vector that will be
// filled in later by setSegmentObject(). We know that we will get
// called first because setSegmentObject() will call us.
variablesVector.add(null);
diff --git a/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/dumpICUrules.bat b/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/dumpICUrules.bat
index 01e7c396ddc..a6081db65a2 100755
--- a/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/dumpICUrules.bat
+++ b/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/dumpICUrules.bat
@@ -253,7 +253,7 @@ sub convertIndex {
print C_INDEX < |