mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-21 12:40:02 +00:00
ICU-2055 make changes for th locale
X-SVN-Rev: 16492
This commit is contained in:
parent
ed44e48cbe
commit
e5cea89eba
2 changed files with 35 additions and 5 deletions
|
@ -146,6 +146,22 @@ public class ICUResourceWriter {
|
|||
}
|
||||
}
|
||||
}
|
||||
public static class ResourceImport extends Resource{
|
||||
String val;
|
||||
public void write(OutputStream writer, int numIndent, boolean bare){
|
||||
writeComments(writer, numIndent);
|
||||
writeIndent(writer, numIndent);
|
||||
String line = ((name==null)? EMPTY: name)+COLON+IMPORT+ OPENBRACE+QUOTE+escapeSyntaxChars(val)+QUOTE+CLOSEBRACE;
|
||||
if(bare==true){
|
||||
if(name!=null){
|
||||
throw new RuntimeException("Bare option is set to true but the resource has a name!");
|
||||
}
|
||||
write(writer,line);
|
||||
}else{
|
||||
write(writer, line+LINESEP);
|
||||
}
|
||||
}
|
||||
}
|
||||
public static class ResourceArray extends Resource{
|
||||
Resource first;
|
||||
public void write(OutputStream writer, int numIndent, boolean bare){
|
||||
|
|
|
@ -3142,6 +3142,7 @@ public class LDML2ICUConverter {
|
|||
private static final String ICU_CLASS = "icu:class";
|
||||
private static final String ICU_IMPORT = "icu:import";
|
||||
private static final String ICU_APPEND = "icu:append";
|
||||
private static final String ICU_IMPORT_FILE = "icu:importFile";
|
||||
|
||||
private ICUResourceWriter.Resource parseBoundaries(Node root, StringBuffer xpath){
|
||||
ICUResourceWriter.ResourceTable table = new ICUResourceWriter.ResourceTable();
|
||||
|
@ -3207,11 +3208,24 @@ public class LDML2ICUConverter {
|
|||
}else if(name.equals(ICU_BOUNDARIES)){
|
||||
res = parseBoundaries(node,xpath);
|
||||
}else if(name.equals(ICU_BDD)){
|
||||
ICUResourceWriter.ResourceString str = new ICUResourceWriter.ResourceString();
|
||||
str.name = (String) keyNameMap.get(name);
|
||||
str.val = LDMLUtilities.getAttributeValue(node, ICU_IMPORT);
|
||||
if(str.val!=null){
|
||||
res = str;
|
||||
String importFile = LDMLUtilities.getAttributeValue(node, ICU_IMPORT_FILE);
|
||||
String importStr = LDMLUtilities.getAttributeValue(node, ICU_IMPORT);
|
||||
if(importFile!=null){
|
||||
ICUResourceWriter.ResourceImport str = new ICUResourceWriter.ResourceImport();
|
||||
str.name = (String) keyNameMap.get(name);
|
||||
str.val = importFile;
|
||||
if(str.val!=null){
|
||||
res = str;
|
||||
}
|
||||
}else if(importStr!= null){
|
||||
ICUResourceWriter.ResourceString str = new ICUResourceWriter.ResourceString();
|
||||
str.name = (String) keyNameMap.get(name);
|
||||
str.val = importFile;
|
||||
if(str.val!=null){
|
||||
res = str;
|
||||
}
|
||||
}else{
|
||||
System.err.println("WARNING: icu:breakDictionaryData element does not have either import or importFile attributes!");
|
||||
}
|
||||
}else{
|
||||
System.err.println("Encountered unknown element: "+name);
|
||||
|
|
Loading…
Add table
Reference in a new issue