Details
-
Improvement
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
None
-
None
-
None
-
Operating System: other
Platform: Other
-
30184
Description
I wonder if this can be added.
/**
- Formats using one formatter and parses using a different formatter.
- An example of use for this would be a webapp where data is taken in one way
- and stored in a database another way.
- @author Archimedes Trajano
*/
public class CompositeFormat extends Format {
private final Format parser;
private final Format formatter;
public CompositeFormat(final Format parser, final Format formatter) { this.parser = parser; this.formatter = formatter; }public StringBuffer format(final Object obj, final StringBuffer toAppendTo,
{ return formatter.format(obj,toAppendTo,pos); }
final FieldPosition pos)public Object parseObject(final String source, final ParsePosition pos)
{ return parser.parseObject(source,pos); }}