20 |
ilm |
1 |
/*
|
|
|
2 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
|
|
|
3 |
*
|
|
|
4 |
* Copyright 2011 OpenConcerto, by ILM Informatique. All rights reserved.
|
|
|
5 |
*
|
|
|
6 |
* The contents of this file are subject to the terms of the GNU General Public License Version 3
|
|
|
7 |
* only ("GPL"). You may not use this file except in compliance with the License. You can obtain a
|
|
|
8 |
* copy of the License at http://www.gnu.org/licenses/gpl-3.0.html See the License for the specific
|
|
|
9 |
* language governing permissions and limitations under the License.
|
|
|
10 |
*
|
|
|
11 |
* When distributing the software, include this License Header Notice in each file.
|
|
|
12 |
*/
|
|
|
13 |
|
|
|
14 |
package org.openconcerto.openoffice.style.data;
|
|
|
15 |
|
|
|
16 |
import org.openconcerto.openoffice.ODPackage;
|
25 |
ilm |
17 |
import org.openconcerto.openoffice.ODValueType;
|
20 |
ilm |
18 |
import org.openconcerto.openoffice.XMLVersion;
|
|
|
19 |
import org.openconcerto.openoffice.spreadsheet.CellStyle;
|
|
|
20 |
|
|
|
21 |
import java.text.DecimalFormatSymbols;
|
|
|
22 |
import java.util.List;
|
|
|
23 |
|
|
|
24 |
import org.jdom.Element;
|
|
|
25 |
import org.jdom.Namespace;
|
|
|
26 |
|
|
|
27 |
// from section 16.27.7 in v1.2-cs01-part1
|
|
|
28 |
public class CurrencyStyle extends DataStyle {
|
|
|
29 |
|
65 |
ilm |
30 |
static final DataStyleDesc<CurrencyStyle> DESC = new DataStyleDesc<CurrencyStyle>(CurrencyStyle.class, XMLVersion.OD, "currency-style", "N") {
|
20 |
ilm |
31 |
@Override
|
|
|
32 |
public CurrencyStyle create(ODPackage pkg, Element e) {
|
|
|
33 |
return new CurrencyStyle(pkg, e);
|
|
|
34 |
}
|
|
|
35 |
};
|
|
|
36 |
|
|
|
37 |
public CurrencyStyle(final ODPackage pkg, Element elem) {
|
25 |
ilm |
38 |
super(pkg, elem, ODValueType.CURRENCY);
|
20 |
ilm |
39 |
}
|
|
|
40 |
|
|
|
41 |
@Override
|
25 |
ilm |
42 |
protected Object convertNonNull(Object o) {
|
|
|
43 |
return NumberStyle.toNumber(o, getEpoch());
|
|
|
44 |
}
|
|
|
45 |
|
|
|
46 |
@Override
|
20 |
ilm |
47 |
public String format(Object o, CellStyle defaultStyle, boolean lenient) {
|
|
|
48 |
final Number n = (Number) o;
|
|
|
49 |
final Namespace numberNS = this.getElement().getNamespace();
|
|
|
50 |
final StringBuilder sb = new StringBuilder();
|
|
|
51 |
@SuppressWarnings("unchecked")
|
|
|
52 |
final List<Element> children = this.getElement().getChildren();
|
|
|
53 |
for (final Element elem : children) {
|
|
|
54 |
if (elem.getNamespace().equals(numberNS)) {
|
|
|
55 |
if (elem.getName().equals("text")) {
|
|
|
56 |
sb.append(elem.getText());
|
|
|
57 |
} else if (elem.getName().equals("number")) {
|
|
|
58 |
// ATTN OpenOffice Fix (it generates <text>-</text>, so we have to use the
|
|
|
59 |
// absolute value)
|
|
|
60 |
final int multiplier = n.doubleValue() > 0 ? 1 : -1;
|
180 |
ilm |
61 |
sb.append(formatNumberOrScientificNumber(elem, n, multiplier, defaultStyle, lenient));
|
20 |
ilm |
62 |
} else if (elem.getName().equals("currency-symbol")) {
|
|
|
63 |
if (elem.getTextTrim().length() > 0) {
|
|
|
64 |
sb.append(elem.getText());
|
|
|
65 |
} else {
|
180 |
ilm |
66 |
sb.append(new DecimalFormatSymbols(this.getLocale(elem, false)).getCurrencySymbol());
|
20 |
ilm |
67 |
}
|
|
|
68 |
}
|
|
|
69 |
}
|
|
|
70 |
}
|
|
|
71 |
return sb.toString();
|
|
|
72 |
}
|
|
|
73 |
}
|