Object o = formatTable.get(qName);
if (o != null) {
if (o instanceof List) {
// this indicates there are forwards references to this decimal format that need to be fixed up
for (Iterator iter = ((List)o).iterator(); iter.hasNext(); ) {
FormatNumber call = (FormatNumber)iter.next();
call.fixup(dfs);
}
} else {
DecimalFormatInfo info = (DecimalFormatInfo)o;
DecimalSymbols old = info.dfs;
int oldPrecedence = info.precedence;