mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-22 08:14:09 -08:00
Add DecimalFormat.setDecimalFormatSymbols
This commit is contained in:
parent
1681aa5834
commit
0c8d93acbc
|
@ -75,6 +75,10 @@ public class TDecimalFormat extends TNumberFormat {
|
||||||
return (DecimalFormatSymbols) symbols.clone();
|
return (DecimalFormatSymbols) symbols.clone();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void setDecimalFormatSymbols(DecimalFormatSymbols symbols) {
|
||||||
|
this.symbols = (TDecimalFormatSymbols) symbols.clone();
|
||||||
|
}
|
||||||
|
|
||||||
private StringBuffer fieldsToText(FormatField[] fields, StringBuffer buffer) {
|
private StringBuffer fieldsToText(FormatField[] fields, StringBuffer buffer) {
|
||||||
for (FormatField field : fields) {
|
for (FormatField field : fields) {
|
||||||
field.render(this, buffer);
|
field.render(this, buffer);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user