summaryrefslogtreecommitdiff
path: root/gnu/java/locale/LocaleInformation_de.java
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2001-09-05 00:00:19 +0000
committerTom Tromey <tromey@redhat.com>2001-09-05 00:00:19 +0000
commitba9e40e5800ecb4fd2f2d5d93502be2d819b8d73 (patch)
treea21763ce7c4f96afff34480333a23135b43b8222 /gnu/java/locale/LocaleInformation_de.java
parentba51285358816fd7fb12e3ac9f7230d0add5b5f9 (diff)
downloadclasspath-ba9e40e5800ecb4fd2f2d5d93502be2d819b8d73.tar.gz
* java/text/SimpleDateFormat.java
(SimpleDateFormat(String,DateFormatSymbols)): Call computeCenturyStart(). * gnu/java/locale/LocaleInformation_de.java (word_breaks, sentence_breaks, line_breaks): Removed. (collation_rules): Use `k,K', not `j,K'. Don't using leading `-'. Use `0<1', not `0,1'. Use `9<A', not `9A'. * gnu/java/locale/LocaleInformation_nl.java: Likewise. * gnu/java/locale/LocaleInformation_en.java: Likewise. * java/text/DateFormatSymbols.java: Merged with libgcj. * java/text/StringCharacterIterator.java: Reindented and merged with libgcj. (StringCharacterIterator(String,int,int,int)): Simplified. (current): Likewise. (next): Likewise. (previous): Likewise. (last): Likewise. (equals): Likewise. (setText): Now public. Also sets all fields. * java/text/RuleBasedCollator.java (clone): Rewrote. * java/text/Collator.java: Mostly merged with libgcj. * java/text/MessageFormat.java: Merged with libgcj. * java/text/FieldPosition.java: Reindented. Merged with libgcj. * java/text/ParsePosition.java: Reindented. Merged with libgcj. * java/text/Format.java: Reindented. Merged with libgcj. (parseObject): Doesn't throw exception on error. * java/text/CharacterIterator.java: Reindented. * java/text/ChoiceFormat.java: Merged with libgcj. * gnu/java/text/Makefile.am: New file. * gnu/java/Makefile.am (SUBDIRS): Added text. * configure.in (AC_OUTPUT): Added gnu/java/text/Makefile. * gnu/java/text/BaseBreakIterator.java: New file from libgcj. * gnu/java/text/CharacterBreakIterator.java: Likewise. * gnu/java/text/LineBreakIterator.java: Likewise. * gnu/java/text/SentenceBreakIterator.java: Likewise. * gnu/java/text/WordBreakIterator.java: Likewise. * java/text/BreakIterator.java: Merged with libgcj. * java/text/DefaultBreakIterator.java: Removed. * java/text/DecimalFormatSymbols.java: Merged with libgcj. * java/text/DateFormat.java: Merged with libgcj. * gnu/java/locale/Makefile.am (EXTRA_DIST): Added new file. * gnu/java/locale/LocaleInformation_en.java: Removed US-specific entries. (collation_rules): Use `k,K', not `j,K'. * gnu/java/locale/LocaleInformation_en_US.java: New file. * java/text/NumberFormat.java: Merged with libgcj. * java/text/DecimalFormat.java: Merged with libgcj.
Diffstat (limited to 'gnu/java/locale/LocaleInformation_de.java')
-rw-r--r--gnu/java/locale/LocaleInformation_de.java34
1 files changed, 2 insertions, 32 deletions
diff --git a/gnu/java/locale/LocaleInformation_de.java b/gnu/java/locale/LocaleInformation_de.java
index 5893389f0..208f2c50b 100644
--- a/gnu/java/locale/LocaleInformation_de.java
+++ b/gnu/java/locale/LocaleInformation_de.java
@@ -1,5 +1,5 @@
/* LocaleInformation_de.java -- German locale data
- Copyright (C) 1999 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2001 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -47,40 +47,10 @@ public class LocaleInformation_de extends ListResourceBundle
* proper format.
*/
private static final String collation_rules =
- "-<0,1<2<3<4<5<6<7<8<9<A,a<b,B<c,C<d,D<e,E<f,F<g,G<h,H<i,I<j,J<j,K" +
+ "<0<1<2<3<4<5<6<7<8<9<A,a<b,B<c,C<d,D<e,E<f,F<g,G<h,H<i,I<j,J<k,K" +
"<l,L<m,M<n,N<o,O<p,P<q,Q<r,R<s,S<t,T<u,U<v,V<w,W<x,X<y,Y,z<Z" +
"&ae,\u00e4&Ae,\u00c4&oe,\u00f6&Oe,\u00d6&ue,\u00fc&Ue,\u00dc&ss,\u00df";
-/*
- * For the followings lists, strings that are subsets of other break strings
- * must be listed first. For example, if "\r" and "\r\n" are sequences,
- * the "\r" must be first or it will never be used.
- */
-
-/**
- * This is the list of word separator characters used by
- * java.text.BreakIterator
- * <p>
- * This is the same list as used in the English local
- */
-private static final String[] word_breaks = { " ", "\t", "\r\n", "\n" };
-
-/**
- * This is the list of sentence break sequences used by
- * java.text.BreakIterator
- * <p>
- * This is the same list as used in the English local
- */
-private static final String[] sentence_breaks = { ". ", ".\t", ".\r\n", ".\r", ".\n" };
-
-/**
- * This is the list of potential line break locations.
- * <p>
- * This is the same list as used in the English local
- */
-private static final String[] line_breaks = { "\t", "-", "\r\n",
- "\n", ". ", ". ", ".", "? ", "? ", "?", "! ", "! ", "!", ", ", " " };
-
/**
* This is the list of months, fully spelled out
*/