Searched refs:_formatSymbols (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/runtime/
H A DAbstractTranslet.java274 public Hashtable _formatSymbols = null; field in class:AbstractTranslet
277 * Adds a DecimalFormat object to the _formatSymbols hashtable.
282 if (_formatSymbols == null) _formatSymbols = new Hashtable();
292 _formatSymbols.put(name, df);
296 * Retrieves a named DecimalFormat object from _formatSymbols hashtable.
300 if (_formatSymbols != null) {
304 DecimalFormat df = (DecimalFormat)_formatSymbols.get(name);
305 if (df == null) df = (DecimalFormat)_formatSymbols.get(EMPTYSTRING);

Completed in 394 milliseconds