summaryrefslogtreecommitdiff
path: root/gnu/java/text/FormatCharacterIterator.java
Commit message (Collapse)AuthorAgeFilesLines
* Cleaned up usage of Configuration.DEBUG in gnu/java/text/FormatCharacterIteratorDalibor Topic2005-07-101-5/+4
| | | | | | | | | 2005-07-10 Dalibor Topic <robilad@kaffe.org> * gnu/java/text/FormatCharacterIterator.java: Removed unnecessary import of gnu.classpath.Configuration. (DEBUG) New private static field. (debug, dumpTable) Use DEBUG.
* * all files: Update for new FSF address.Mark Wielaard2005-07-021-2/+2
|
* * gnu/java/nio/SelectorImpl.java: Removed unused import.Tom Tromey2005-01-041-3/+3
| | | | | | | | | | | | | | | | | | | | * gnu/java/security/der/DERWriter.java: Removed unused import. * gnu/java/net/protocol/http/Connection.java: Removed unused import. * gnu/java/nio/PipeImpl.java (read): Reordered modifiers. Fixed indentation. (write): Likewise. * gnu/java/rmi/server/ConnectionRunnerPool.java (getConnectionRunner): Reordered modifiers. * gnu/java/text/FormatCharacterIterator.java (debug): Removed useless `final'. (dumpTable): Likewise. * gnu/java/net/PlainDatagramSocketImpl.java (bind): Reordered modifiers. (create, setOption, getOption, close, join, leave): Likewise. * gnu/java/net/PlainSocketImpl.java (create): Reordered modifiers. (bind, listen, accept): Likewise.
* 2004-04-28 Guilhem Lavaux <guilhem@kaffe.org>Guilhem Lavaux2004-04-281-0/+534
* gnu/java/text/FormatBuffer.java, gnu/java/text/AttributedFormatBuffer.java, gnu/java/text/StringFormatBuffer.java: New classes to implement attributed iterators in java.text. * gnu/java/text/FormatCharacterIterator.java: Moved from java/text as it is an internal class. * gnu/java/text/Makefile.am: Added new files to EXTRA_DIST. * java/text/Makefile.am: Removed moved classes from EXTRA_DIST. 2004-04-28 Guilhem Lavaux <guilhem@kaffe.org> * java/text/MessageFormat.java: (class Field): New class. (formatToCharacterIterator): New method. (format): Use formatInternal now. (formatInternal): New method. String formatter should be done here (with attributes). Attributes merging supported. (parse): More documentation. (getFormatsByArgumentIndex): New method. (setFormatByArgumentIndex): New method. (setFormatsByArgumentIndex): New method. 2004-04-28 Guilhem Lavaux <guilhem@kaffe.org> * java/text/SimpleDateFormat.java: (formatWithAttribute): New method. It implements the formatting process with attributes. (format): Use formatWithAttribute. (formatToCharacterIterator): New method. Use formatWithAttribute. 2004-04-28 Guilhem Lavaux <guilhem@kaffe.org> * java/text/DecimalFormat.java (scanFix): Build attribute array. Fixed error reporting. (applyPatternWithSymbols): Store attributes for the prefix and suffix. (formatInternal): New method. Changed the way the string is computed. Implemented attributes. Cleant up rounding in exponential notation. (format): Use formatInternal. (formatToCharacterIterator): New method. (exponentRound, negativePrefixRanges, positivePrefixRanges, negativePrefixAttrs, positivePrefixAttrs, negativeSuffixRanges, positiveSuffixRanges, negativeSuffixAttrs, positiveSuffixAttrs): New fields. 2004-04-28 Guilhem Lavaux <guilhem@kaffe.org> * java/text/Format.java: Updated importations. Removed unnecessary classes.