Imported GNU Classpath 0.90
Imported GNU Classpath 0.90
* scripts/makemake.tcl: Set gnu/java/awt/peer/swing to ignore.
* gnu/classpath/jdwp/VMFrame.java (SIZE): New constant.
* java/lang/VMCompiler.java: Use gnu.java.security.hash.MD5.
* java/lang/Math.java: New override file.
* java/lang/Character.java: Merged from Classpath.
(start, end): Now 'int's.
(canonicalName): New field.
(CANONICAL_NAME, NO_SPACES_NAME, CONSTANT_NAME): New constants.
(UnicodeBlock): Added argument.
(of): New overload.
(forName): New method.
Updated unicode blocks.
(sets): Updated.
* sources.am: Regenerated.
* Makefile.in: Likewise.
From-SVN: r111942
This commit is contained in:
@@ -80,6 +80,7 @@ CCDEPMODE = @CCDEPMODE@
|
||||
CFLAGS = @CFLAGS@
|
||||
CLASSPATH_INCLUDES = @CLASSPATH_INCLUDES@
|
||||
CLASSPATH_MODULE = @CLASSPATH_MODULE@
|
||||
COLLECTIONS_PREFIX = @COLLECTIONS_PREFIX@
|
||||
CP = @CP@
|
||||
CPP = @CPP@
|
||||
CPPFLAGS = @CPPFLAGS@
|
||||
@@ -87,6 +88,8 @@ CREATE_ALSA_LIBRARIES_FALSE = @CREATE_ALSA_LIBRARIES_FALSE@
|
||||
CREATE_ALSA_LIBRARIES_TRUE = @CREATE_ALSA_LIBRARIES_TRUE@
|
||||
CREATE_API_DOCS_FALSE = @CREATE_API_DOCS_FALSE@
|
||||
CREATE_API_DOCS_TRUE = @CREATE_API_DOCS_TRUE@
|
||||
CREATE_COLLECTIONS_FALSE = @CREATE_COLLECTIONS_FALSE@
|
||||
CREATE_COLLECTIONS_TRUE = @CREATE_COLLECTIONS_TRUE@
|
||||
CREATE_CORE_JNI_LIBRARIES_FALSE = @CREATE_CORE_JNI_LIBRARIES_FALSE@
|
||||
CREATE_CORE_JNI_LIBRARIES_TRUE = @CREATE_CORE_JNI_LIBRARIES_TRUE@
|
||||
CREATE_DSSI_LIBRARIES_FALSE = @CREATE_DSSI_LIBRARIES_FALSE@
|
||||
@@ -117,6 +120,7 @@ EGREP = @EGREP@
|
||||
ERROR_CFLAGS = @ERROR_CFLAGS@
|
||||
EXAMPLESDIR = @EXAMPLESDIR@
|
||||
EXEEXT = @EXEEXT@
|
||||
FASTJAR = @FASTJAR@
|
||||
FIND = @FIND@
|
||||
FOUND_ECJ_FALSE = @FOUND_ECJ_FALSE@
|
||||
FOUND_ECJ_TRUE = @FOUND_ECJ_TRUE@
|
||||
@@ -128,6 +132,8 @@ FOUND_JIKES_FALSE = @FOUND_JIKES_FALSE@
|
||||
FOUND_JIKES_TRUE = @FOUND_JIKES_TRUE@
|
||||
FOUND_KJC_FALSE = @FOUND_KJC_FALSE@
|
||||
FOUND_KJC_TRUE = @FOUND_KJC_TRUE@
|
||||
FREETYPE2_CFLAGS = @FREETYPE2_CFLAGS@
|
||||
FREETYPE2_LIBS = @FREETYPE2_LIBS@
|
||||
GCJ = @GCJ@
|
||||
GCJX = @GCJX@
|
||||
GJDOC = @GJDOC@
|
||||
@@ -178,6 +184,7 @@ PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PANGOFT2_CFLAGS = @PANGOFT2_CFLAGS@
|
||||
PANGOFT2_LIBS = @PANGOFT2_LIBS@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
PERL = @PERL@
|
||||
PKG_CONFIG = @PKG_CONFIG@
|
||||
QT_CFLAGS = @QT_CFLAGS@
|
||||
QT_LIBS = @QT_LIBS@
|
||||
|
||||
@@ -30,6 +30,7 @@ classes in the above packages.
|
||||
|
||||
. org.xml.sax.* ... SAX2 interfaces
|
||||
. org.w3c.dom.* ... DOM Level 3 interfaces
|
||||
. org.relaxng.datatype.* ... RELAX NG pluggable datatypes API
|
||||
|
||||
CONFORMANCE
|
||||
|
||||
@@ -175,3 +176,29 @@ using thread context variables.
|
||||
Update: thread context variables have been introduced. This is very
|
||||
untested though, libxmll therefore still has the single thread
|
||||
bottleneck.
|
||||
|
||||
|
||||
Validation
|
||||
===================================================
|
||||
|
||||
Pluggable datatypes
|
||||
---------------------------------------------------
|
||||
Validators should use the RELAX NG pluggable datatypes API to retrieve
|
||||
datatype (XML Schema simple type) implementations in a schema-neutral
|
||||
fashion. The following code demonstrates looking up a W3C XML Schema
|
||||
nonNegativeInteger datatype:
|
||||
|
||||
DatatypeLibrary xsd = DatatypeLibraryLoader
|
||||
.createDatatypeLibrary(XMLConstants.W3C_XML_SCHEMA_NS_URI);
|
||||
Datatype nonNegativeInteger = xsd.createDatatype("nonNegativeInteger");
|
||||
|
||||
It is also possible to create new types by derivation. For instance,
|
||||
to create a datatype that will match a US ZIP code:
|
||||
|
||||
DatatypeBuilder b = xsd.createDatatypeBuilder("string");
|
||||
b.addParameter("pattern", "(^[0-9]{5}$)|(^[0-9]{5}-[0-9]{4}$)");
|
||||
Datatype zipCode = b.createDatatype();
|
||||
|
||||
A datatype library implementation for XML Schema is provided; other
|
||||
library implementations may be added.
|
||||
|
||||
|
||||
@@ -44,6 +44,7 @@ create_html:
|
||||
-licensetext \
|
||||
-linksource \
|
||||
-splitindex \
|
||||
-validhtml \
|
||||
-d html \
|
||||
-doctitle "GNU Classpath $(VERSION)" \
|
||||
-windowtitle "GNU Classpath $(VERSION) Documentation" \
|
||||
|
||||
@@ -73,6 +73,7 @@ CCDEPMODE = @CCDEPMODE@
|
||||
CFLAGS = @CFLAGS@
|
||||
CLASSPATH_INCLUDES = @CLASSPATH_INCLUDES@
|
||||
CLASSPATH_MODULE = @CLASSPATH_MODULE@
|
||||
COLLECTIONS_PREFIX = @COLLECTIONS_PREFIX@
|
||||
CP = @CP@
|
||||
CPP = @CPP@
|
||||
CPPFLAGS = @CPPFLAGS@
|
||||
@@ -80,6 +81,8 @@ CREATE_ALSA_LIBRARIES_FALSE = @CREATE_ALSA_LIBRARIES_FALSE@
|
||||
CREATE_ALSA_LIBRARIES_TRUE = @CREATE_ALSA_LIBRARIES_TRUE@
|
||||
CREATE_API_DOCS_FALSE = @CREATE_API_DOCS_FALSE@
|
||||
CREATE_API_DOCS_TRUE = @CREATE_API_DOCS_TRUE@
|
||||
CREATE_COLLECTIONS_FALSE = @CREATE_COLLECTIONS_FALSE@
|
||||
CREATE_COLLECTIONS_TRUE = @CREATE_COLLECTIONS_TRUE@
|
||||
CREATE_CORE_JNI_LIBRARIES_FALSE = @CREATE_CORE_JNI_LIBRARIES_FALSE@
|
||||
CREATE_CORE_JNI_LIBRARIES_TRUE = @CREATE_CORE_JNI_LIBRARIES_TRUE@
|
||||
CREATE_DSSI_LIBRARIES_FALSE = @CREATE_DSSI_LIBRARIES_FALSE@
|
||||
@@ -110,6 +113,7 @@ EGREP = @EGREP@
|
||||
ERROR_CFLAGS = @ERROR_CFLAGS@
|
||||
EXAMPLESDIR = @EXAMPLESDIR@
|
||||
EXEEXT = @EXEEXT@
|
||||
FASTJAR = @FASTJAR@
|
||||
FIND = @FIND@
|
||||
FOUND_ECJ_FALSE = @FOUND_ECJ_FALSE@
|
||||
FOUND_ECJ_TRUE = @FOUND_ECJ_TRUE@
|
||||
@@ -121,6 +125,8 @@ FOUND_JIKES_FALSE = @FOUND_JIKES_FALSE@
|
||||
FOUND_JIKES_TRUE = @FOUND_JIKES_TRUE@
|
||||
FOUND_KJC_FALSE = @FOUND_KJC_FALSE@
|
||||
FOUND_KJC_TRUE = @FOUND_KJC_TRUE@
|
||||
FREETYPE2_CFLAGS = @FREETYPE2_CFLAGS@
|
||||
FREETYPE2_LIBS = @FREETYPE2_LIBS@
|
||||
GCJ = @GCJ@
|
||||
GCJX = @GCJX@
|
||||
GJDOC = @GJDOC@
|
||||
@@ -171,6 +177,7 @@ PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PANGOFT2_CFLAGS = @PANGOFT2_CFLAGS@
|
||||
PANGOFT2_LIBS = @PANGOFT2_LIBS@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
PERL = @PERL@
|
||||
PKG_CONFIG = @PKG_CONFIG@
|
||||
QT_CFLAGS = @QT_CFLAGS@
|
||||
QT_LIBS = @QT_LIBS@
|
||||
@@ -449,6 +456,7 @@ create_html:
|
||||
-licensetext \
|
||||
-linksource \
|
||||
-splitindex \
|
||||
-validhtml \
|
||||
-d html \
|
||||
-doctitle "GNU Classpath $(VERSION)" \
|
||||
-windowtitle "GNU Classpath $(VERSION) Documentation" \
|
||||
|
||||
@@ -0,0 +1,133 @@
|
||||
# Blocks-4.0.0.txt
|
||||
# Correlated with Unicode 4.0
|
||||
# Note: The casing of block names is not normative.
|
||||
# For example, "Basic Latin" and "BASIC LATIN" are equivalent.
|
||||
#
|
||||
# Code points not explicitly listed in this file are given the value No_Block.
|
||||
#
|
||||
# Start Code..End Code; Block Name
|
||||
0000..007F; Basic Latin
|
||||
0080..00FF; Latin-1 Supplement
|
||||
0100..017F; Latin Extended-A
|
||||
0180..024F; Latin Extended-B
|
||||
0250..02AF; IPA Extensions
|
||||
02B0..02FF; Spacing Modifier Letters
|
||||
0300..036F; Combining Diacritical Marks
|
||||
0370..03FF; Greek and Coptic
|
||||
0400..04FF; Cyrillic
|
||||
0500..052F; Cyrillic Supplementary
|
||||
0530..058F; Armenian
|
||||
0590..05FF; Hebrew
|
||||
0600..06FF; Arabic
|
||||
0700..074F; Syriac
|
||||
0780..07BF; Thaana
|
||||
0900..097F; Devanagari
|
||||
0980..09FF; Bengali
|
||||
0A00..0A7F; Gurmukhi
|
||||
0A80..0AFF; Gujarati
|
||||
0B00..0B7F; Oriya
|
||||
0B80..0BFF; Tamil
|
||||
0C00..0C7F; Telugu
|
||||
0C80..0CFF; Kannada
|
||||
0D00..0D7F; Malayalam
|
||||
0D80..0DFF; Sinhala
|
||||
0E00..0E7F; Thai
|
||||
0E80..0EFF; Lao
|
||||
0F00..0FFF; Tibetan
|
||||
1000..109F; Myanmar
|
||||
10A0..10FF; Georgian
|
||||
1100..11FF; Hangul Jamo
|
||||
1200..137F; Ethiopic
|
||||
13A0..13FF; Cherokee
|
||||
1400..167F; Unified Canadian Aboriginal Syllabics
|
||||
1680..169F; Ogham
|
||||
16A0..16FF; Runic
|
||||
1700..171F; Tagalog
|
||||
1720..173F; Hanunoo
|
||||
1740..175F; Buhid
|
||||
1760..177F; Tagbanwa
|
||||
1780..17FF; Khmer
|
||||
1800..18AF; Mongolian
|
||||
1900..194F; Limbu
|
||||
1950..197F; Tai Le
|
||||
19E0..19FF; Khmer Symbols
|
||||
1D00..1D7F; Phonetic Extensions
|
||||
1E00..1EFF; Latin Extended Additional
|
||||
1F00..1FFF; Greek Extended
|
||||
2000..206F; General Punctuation
|
||||
2070..209F; Superscripts and Subscripts
|
||||
20A0..20CF; Currency Symbols
|
||||
20D0..20FF; Combining Diacritical Marks for Symbols
|
||||
2100..214F; Letterlike Symbols
|
||||
2150..218F; Number Forms
|
||||
2190..21FF; Arrows
|
||||
2200..22FF; Mathematical Operators
|
||||
2300..23FF; Miscellaneous Technical
|
||||
2400..243F; Control Pictures
|
||||
2440..245F; Optical Character Recognition
|
||||
2460..24FF; Enclosed Alphanumerics
|
||||
2500..257F; Box Drawing
|
||||
2580..259F; Block Elements
|
||||
25A0..25FF; Geometric Shapes
|
||||
2600..26FF; Miscellaneous Symbols
|
||||
2700..27BF; Dingbats
|
||||
27C0..27EF; Miscellaneous Mathematical Symbols-A
|
||||
27F0..27FF; Supplemental Arrows-A
|
||||
2800..28FF; Braille Patterns
|
||||
2900..297F; Supplemental Arrows-B
|
||||
2980..29FF; Miscellaneous Mathematical Symbols-B
|
||||
2A00..2AFF; Supplemental Mathematical Operators
|
||||
2B00..2BFF; Miscellaneous Symbols and Arrows
|
||||
2E80..2EFF; CJK Radicals Supplement
|
||||
2F00..2FDF; Kangxi Radicals
|
||||
2FF0..2FFF; Ideographic Description Characters
|
||||
3000..303F; CJK Symbols and Punctuation
|
||||
3040..309F; Hiragana
|
||||
30A0..30FF; Katakana
|
||||
3100..312F; Bopomofo
|
||||
3130..318F; Hangul Compatibility Jamo
|
||||
3190..319F; Kanbun
|
||||
31A0..31BF; Bopomofo Extended
|
||||
31F0..31FF; Katakana Phonetic Extensions
|
||||
3200..32FF; Enclosed CJK Letters and Months
|
||||
3300..33FF; CJK Compatibility
|
||||
3400..4DBF; CJK Unified Ideographs Extension A
|
||||
4DC0..4DFF; Yijing Hexagram Symbols
|
||||
4E00..9FFF; CJK Unified Ideographs
|
||||
A000..A48F; Yi Syllables
|
||||
A490..A4CF; Yi Radicals
|
||||
AC00..D7AF; Hangul Syllables
|
||||
D800..DB7F; High Surrogates
|
||||
DB80..DBFF; High Private Use Surrogates
|
||||
DC00..DFFF; Low Surrogates
|
||||
E000..F8FF; Private Use Area
|
||||
F900..FAFF; CJK Compatibility Ideographs
|
||||
FB00..FB4F; Alphabetic Presentation Forms
|
||||
FB50..FDFF; Arabic Presentation Forms-A
|
||||
FE00..FE0F; Variation Selectors
|
||||
FE20..FE2F; Combining Half Marks
|
||||
FE30..FE4F; CJK Compatibility Forms
|
||||
FE50..FE6F; Small Form Variants
|
||||
FE70..FEFF; Arabic Presentation Forms-B
|
||||
FF00..FFEF; Halfwidth and Fullwidth Forms
|
||||
FFF0..FFFF; Specials
|
||||
10000..1007F; Linear B Syllabary
|
||||
10080..100FF; Linear B Ideograms
|
||||
10100..1013F; Aegean Numbers
|
||||
10300..1032F; Old Italic
|
||||
10330..1034F; Gothic
|
||||
10380..1039F; Ugaritic
|
||||
10400..1044F; Deseret
|
||||
10450..1047F; Shavian
|
||||
10480..104AF; Osmanya
|
||||
10800..1083F; Cypriot Syllabary
|
||||
1D000..1D0FF; Byzantine Musical Symbols
|
||||
1D100..1D1FF; Musical Symbols
|
||||
1D300..1D35F; Tai Xuan Jing Symbols
|
||||
1D400..1D7FF; Mathematical Alphanumeric Symbols
|
||||
20000..2A6DF; CJK Unified Ideographs Extension B
|
||||
2F800..2FA1F; CJK Compatibility Ideographs Supplement
|
||||
E0000..E007F; Tags
|
||||
E0100..E01EF; Variation Selectors Supplement
|
||||
F0000..FFFFF; Supplementary Private Use Area-A
|
||||
100000..10FFFF; Supplementary Private Use Area-B
|
||||
@@ -0,0 +1,256 @@
|
||||
# SpecialCasing-4.0.0.txt
|
||||
# Date: 2003-03-14, 20:22:04 GMT [MD]
|
||||
#
|
||||
# Special Casing Properties
|
||||
#
|
||||
# This file is a supplement to the UnicodeData file.
|
||||
# It contains additional information about the casing of Unicode characters.
|
||||
# (For compatibility, the UnicodeData.txt file only contains case mappings for
|
||||
# characters where they are 1-1, and does not have locale-specific mappings.)
|
||||
# For more information, see the discussion of Case Mappings in the Unicode Standard.
|
||||
#
|
||||
# All code points not listed in this file that do not have a simple case mappings
|
||||
# in UnicodeData.txt map to themselves.
|
||||
# ================================================================================
|
||||
# Format
|
||||
# ================================================================================
|
||||
# The entries in this file are in the following machine-readable format:
|
||||
#
|
||||
# <code>; <lower> ; <title> ; <upper> ; (<condition_list> ;)? # <comment>
|
||||
#
|
||||
# <code>, <lower>, <title>, and <upper> provide character values in hex. If there is more than
|
||||
# one character, they are separated by spaces. Other than as used to separate elements,
|
||||
# spaces are to be ignored.
|
||||
#
|
||||
# The <condition_list> is optional. Where present, it consists of one or more locales or contexts,
|
||||
# separated by spaces. In these conditions:
|
||||
# - A condition list overrides the normal behavior if all of the listed conditions are true.
|
||||
# - The context is always the context of the characters in the original string,
|
||||
# NOT in the resulting string.
|
||||
# - Case distinctions in the condition list are not significant.
|
||||
# - Conditions preceded by "Not_" represent the negation of the condition.
|
||||
#
|
||||
# A locale is defined as:
|
||||
# <locale> := <ISO_639_code> ( "_" <ISO_3166_code> ( "_" <variant> )? )?
|
||||
# <ISO_3166_code> := 2-letter ISO country code,
|
||||
# <ISO_639_code> := 2-letter ISO language code
|
||||
#
|
||||
# A context is one of the following, as defined in the Unicode Standard:
|
||||
# Final_Sigma, After_Soft_Dotted, More_Above, Before_Dot, Not_Before_Dot, After_I
|
||||
#
|
||||
# Parsers of this file must be prepared to deal with future additions to this format:
|
||||
# * Additional contexts
|
||||
# * Additional fields
|
||||
# ================================================================================
|
||||
|
||||
# ================================================================================
|
||||
# Unconditional mappings
|
||||
# ================================================================================
|
||||
|
||||
# The German es-zed is special--the normal mapping is to SS.
|
||||
# Note: the titlecase should never occur in practice. It is equal to titlecase(uppercase(<es-zed>))
|
||||
|
||||
00DF; 00DF; 0053 0073; 0053 0053; # LATIN SMALL LETTER SHARP S
|
||||
|
||||
# Preserve canonical equivalence for I with dot. Turkic is handled below.
|
||||
|
||||
0130; 0069 0307; 0130; 0130; # LATIN CAPITAL LETTER I WITH DOT ABOVE
|
||||
|
||||
# Ligatures
|
||||
|
||||
FB00; FB00; 0046 0066; 0046 0046; # LATIN SMALL LIGATURE FF
|
||||
FB01; FB01; 0046 0069; 0046 0049; # LATIN SMALL LIGATURE FI
|
||||
FB02; FB02; 0046 006C; 0046 004C; # LATIN SMALL LIGATURE FL
|
||||
FB03; FB03; 0046 0066 0069; 0046 0046 0049; # LATIN SMALL LIGATURE FFI
|
||||
FB04; FB04; 0046 0066 006C; 0046 0046 004C; # LATIN SMALL LIGATURE FFL
|
||||
FB05; FB05; 0053 0074; 0053 0054; # LATIN SMALL LIGATURE LONG S T
|
||||
FB06; FB06; 0053 0074; 0053 0054; # LATIN SMALL LIGATURE ST
|
||||
|
||||
0587; 0587; 0535 0582; 0535 0552; # ARMENIAN SMALL LIGATURE ECH YIWN
|
||||
FB13; FB13; 0544 0576; 0544 0546; # ARMENIAN SMALL LIGATURE MEN NOW
|
||||
FB14; FB14; 0544 0565; 0544 0535; # ARMENIAN SMALL LIGATURE MEN ECH
|
||||
FB15; FB15; 0544 056B; 0544 053B; # ARMENIAN SMALL LIGATURE MEN INI
|
||||
FB16; FB16; 054E 0576; 054E 0546; # ARMENIAN SMALL LIGATURE VEW NOW
|
||||
FB17; FB17; 0544 056D; 0544 053D; # ARMENIAN SMALL LIGATURE MEN XEH
|
||||
|
||||
# No corresponding uppercase precomposed character
|
||||
|
||||
0149; 0149; 02BC 004E; 02BC 004E; # LATIN SMALL LETTER N PRECEDED BY APOSTROPHE
|
||||
0390; 0390; 0399 0308 0301; 0399 0308 0301; # GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS
|
||||
03B0; 03B0; 03A5 0308 0301; 03A5 0308 0301; # GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS
|
||||
01F0; 01F0; 004A 030C; 004A 030C; # LATIN SMALL LETTER J WITH CARON
|
||||
1E96; 1E96; 0048 0331; 0048 0331; # LATIN SMALL LETTER H WITH LINE BELOW
|
||||
1E97; 1E97; 0054 0308; 0054 0308; # LATIN SMALL LETTER T WITH DIAERESIS
|
||||
1E98; 1E98; 0057 030A; 0057 030A; # LATIN SMALL LETTER W WITH RING ABOVE
|
||||
1E99; 1E99; 0059 030A; 0059 030A; # LATIN SMALL LETTER Y WITH RING ABOVE
|
||||
1E9A; 1E9A; 0041 02BE; 0041 02BE; # LATIN SMALL LETTER A WITH RIGHT HALF RING
|
||||
1F50; 1F50; 03A5 0313; 03A5 0313; # GREEK SMALL LETTER UPSILON WITH PSILI
|
||||
1F52; 1F52; 03A5 0313 0300; 03A5 0313 0300; # GREEK SMALL LETTER UPSILON WITH PSILI AND VARIA
|
||||
1F54; 1F54; 03A5 0313 0301; 03A5 0313 0301; # GREEK SMALL LETTER UPSILON WITH PSILI AND OXIA
|
||||
1F56; 1F56; 03A5 0313 0342; 03A5 0313 0342; # GREEK SMALL LETTER UPSILON WITH PSILI AND PERISPOMENI
|
||||
1FB6; 1FB6; 0391 0342; 0391 0342; # GREEK SMALL LETTER ALPHA WITH PERISPOMENI
|
||||
1FC6; 1FC6; 0397 0342; 0397 0342; # GREEK SMALL LETTER ETA WITH PERISPOMENI
|
||||
1FD2; 1FD2; 0399 0308 0300; 0399 0308 0300; # GREEK SMALL LETTER IOTA WITH DIALYTIKA AND VARIA
|
||||
1FD3; 1FD3; 0399 0308 0301; 0399 0308 0301; # GREEK SMALL LETTER IOTA WITH DIALYTIKA AND OXIA
|
||||
1FD6; 1FD6; 0399 0342; 0399 0342; # GREEK SMALL LETTER IOTA WITH PERISPOMENI
|
||||
1FD7; 1FD7; 0399 0308 0342; 0399 0308 0342; # GREEK SMALL LETTER IOTA WITH DIALYTIKA AND PERISPOMENI
|
||||
1FE2; 1FE2; 03A5 0308 0300; 03A5 0308 0300; # GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND VARIA
|
||||
1FE3; 1FE3; 03A5 0308 0301; 03A5 0308 0301; # GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND OXIA
|
||||
1FE4; 1FE4; 03A1 0313; 03A1 0313; # GREEK SMALL LETTER RHO WITH PSILI
|
||||
1FE6; 1FE6; 03A5 0342; 03A5 0342; # GREEK SMALL LETTER UPSILON WITH PERISPOMENI
|
||||
1FE7; 1FE7; 03A5 0308 0342; 03A5 0308 0342; # GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND PERISPOMENI
|
||||
1FF6; 1FF6; 03A9 0342; 03A9 0342; # GREEK SMALL LETTER OMEGA WITH PERISPOMENI
|
||||
|
||||
# IMPORTANT-when capitalizing iota-subscript (0345)
|
||||
# It MUST be in normalized form--moved to the end of any sequence of combining marks.
|
||||
# This is because logically it represents a following base character!
|
||||
# E.g. <iota_subscript> (<Mn> | <Mc> | <Me>)+ => (<Mn> | <Mc> | <Me>)+ <iota_subscript>
|
||||
# It should never be the first character in a word, so in titlecasing it can be left as is.
|
||||
|
||||
# The following cases are already in the UnicodeData file, so are only commented here.
|
||||
|
||||
# 0345; 0345; 0345; 0399; # COMBINING GREEK YPOGEGRAMMENI
|
||||
|
||||
# All letters with YPOGEGRAMMENI (iota-subscript) or PROSGEGRAMMENI (iota adscript)
|
||||
# have special uppercases.
|
||||
# Note: characters with PROSGEGRAMMENI are actually titlecase, not uppercase!
|
||||
|
||||
1F80; 1F80; 1F88; 1F08 0399; # GREEK SMALL LETTER ALPHA WITH PSILI AND YPOGEGRAMMENI
|
||||
1F81; 1F81; 1F89; 1F09 0399; # GREEK SMALL LETTER ALPHA WITH DASIA AND YPOGEGRAMMENI
|
||||
1F82; 1F82; 1F8A; 1F0A 0399; # GREEK SMALL LETTER ALPHA WITH PSILI AND VARIA AND YPOGEGRAMMENI
|
||||
1F83; 1F83; 1F8B; 1F0B 0399; # GREEK SMALL LETTER ALPHA WITH DASIA AND VARIA AND YPOGEGRAMMENI
|
||||
1F84; 1F84; 1F8C; 1F0C 0399; # GREEK SMALL LETTER ALPHA WITH PSILI AND OXIA AND YPOGEGRAMMENI
|
||||
1F85; 1F85; 1F8D; 1F0D 0399; # GREEK SMALL LETTER ALPHA WITH DASIA AND OXIA AND YPOGEGRAMMENI
|
||||
1F86; 1F86; 1F8E; 1F0E 0399; # GREEK SMALL LETTER ALPHA WITH PSILI AND PERISPOMENI AND YPOGEGRAMMENI
|
||||
1F87; 1F87; 1F8F; 1F0F 0399; # GREEK SMALL LETTER ALPHA WITH DASIA AND PERISPOMENI AND YPOGEGRAMMENI
|
||||
1F88; 1F80; 1F88; 1F08 0399; # GREEK CAPITAL LETTER ALPHA WITH PSILI AND PROSGEGRAMMENI
|
||||
1F89; 1F81; 1F89; 1F09 0399; # GREEK CAPITAL LETTER ALPHA WITH DASIA AND PROSGEGRAMMENI
|
||||
1F8A; 1F82; 1F8A; 1F0A 0399; # GREEK CAPITAL LETTER ALPHA WITH PSILI AND VARIA AND PROSGEGRAMMENI
|
||||
1F8B; 1F83; 1F8B; 1F0B 0399; # GREEK CAPITAL LETTER ALPHA WITH DASIA AND VARIA AND PROSGEGRAMMENI
|
||||
1F8C; 1F84; 1F8C; 1F0C 0399; # GREEK CAPITAL LETTER ALPHA WITH PSILI AND OXIA AND PROSGEGRAMMENI
|
||||
1F8D; 1F85; 1F8D; 1F0D 0399; # GREEK CAPITAL LETTER ALPHA WITH DASIA AND OXIA AND PROSGEGRAMMENI
|
||||
1F8E; 1F86; 1F8E; 1F0E 0399; # GREEK CAPITAL LETTER ALPHA WITH PSILI AND PERISPOMENI AND PROSGEGRAMMENI
|
||||
1F8F; 1F87; 1F8F; 1F0F 0399; # GREEK CAPITAL LETTER ALPHA WITH DASIA AND PERISPOMENI AND PROSGEGRAMMENI
|
||||
1F90; 1F90; 1F98; 1F28 0399; # GREEK SMALL LETTER ETA WITH PSILI AND YPOGEGRAMMENI
|
||||
1F91; 1F91; 1F99; 1F29 0399; # GREEK SMALL LETTER ETA WITH DASIA AND YPOGEGRAMMENI
|
||||
1F92; 1F92; 1F9A; 1F2A 0399; # GREEK SMALL LETTER ETA WITH PSILI AND VARIA AND YPOGEGRAMMENI
|
||||
1F93; 1F93; 1F9B; 1F2B 0399; # GREEK SMALL LETTER ETA WITH DASIA AND VARIA AND YPOGEGRAMMENI
|
||||
1F94; 1F94; 1F9C; 1F2C 0399; # GREEK SMALL LETTER ETA WITH PSILI AND OXIA AND YPOGEGRAMMENI
|
||||
1F95; 1F95; 1F9D; 1F2D 0399; # GREEK SMALL LETTER ETA WITH DASIA AND OXIA AND YPOGEGRAMMENI
|
||||
1F96; 1F96; 1F9E; 1F2E 0399; # GREEK SMALL LETTER ETA WITH PSILI AND PERISPOMENI AND YPOGEGRAMMENI
|
||||
1F97; 1F97; 1F9F; 1F2F 0399; # GREEK SMALL LETTER ETA WITH DASIA AND PERISPOMENI AND YPOGEGRAMMENI
|
||||
1F98; 1F90; 1F98; 1F28 0399; # GREEK CAPITAL LETTER ETA WITH PSILI AND PROSGEGRAMMENI
|
||||
1F99; 1F91; 1F99; 1F29 0399; # GREEK CAPITAL LETTER ETA WITH DASIA AND PROSGEGRAMMENI
|
||||
1F9A; 1F92; 1F9A; 1F2A 0399; # GREEK CAPITAL LETTER ETA WITH PSILI AND VARIA AND PROSGEGRAMMENI
|
||||
1F9B; 1F93; 1F9B; 1F2B 0399; # GREEK CAPITAL LETTER ETA WITH DASIA AND VARIA AND PROSGEGRAMMENI
|
||||
1F9C; 1F94; 1F9C; 1F2C 0399; # GREEK CAPITAL LETTER ETA WITH PSILI AND OXIA AND PROSGEGRAMMENI
|
||||
1F9D; 1F95; 1F9D; 1F2D 0399; # GREEK CAPITAL LETTER ETA WITH DASIA AND OXIA AND PROSGEGRAMMENI
|
||||
1F9E; 1F96; 1F9E; 1F2E 0399; # GREEK CAPITAL LETTER ETA WITH PSILI AND PERISPOMENI AND PROSGEGRAMMENI
|
||||
1F9F; 1F97; 1F9F; 1F2F 0399; # GREEK CAPITAL LETTER ETA WITH DASIA AND PERISPOMENI AND PROSGEGRAMMENI
|
||||
1FA0; 1FA0; 1FA8; 1F68 0399; # GREEK SMALL LETTER OMEGA WITH PSILI AND YPOGEGRAMMENI
|
||||
1FA1; 1FA1; 1FA9; 1F69 0399; # GREEK SMALL LETTER OMEGA WITH DASIA AND YPOGEGRAMMENI
|
||||
1FA2; 1FA2; 1FAA; 1F6A 0399; # GREEK SMALL LETTER OMEGA WITH PSILI AND VARIA AND YPOGEGRAMMENI
|
||||
1FA3; 1FA3; 1FAB; 1F6B 0399; # GREEK SMALL LETTER OMEGA WITH DASIA AND VARIA AND YPOGEGRAMMENI
|
||||
1FA4; 1FA4; 1FAC; 1F6C 0399; # GREEK SMALL LETTER OMEGA WITH PSILI AND OXIA AND YPOGEGRAMMENI
|
||||
1FA5; 1FA5; 1FAD; 1F6D 0399; # GREEK SMALL LETTER OMEGA WITH DASIA AND OXIA AND YPOGEGRAMMENI
|
||||
1FA6; 1FA6; 1FAE; 1F6E 0399; # GREEK SMALL LETTER OMEGA WITH PSILI AND PERISPOMENI AND YPOGEGRAMMENI
|
||||
1FA7; 1FA7; 1FAF; 1F6F 0399; # GREEK SMALL LETTER OMEGA WITH DASIA AND PERISPOMENI AND YPOGEGRAMMENI
|
||||
1FA8; 1FA0; 1FA8; 1F68 0399; # GREEK CAPITAL LETTER OMEGA WITH PSILI AND PROSGEGRAMMENI
|
||||
1FA9; 1FA1; 1FA9; 1F69 0399; # GREEK CAPITAL LETTER OMEGA WITH DASIA AND PROSGEGRAMMENI
|
||||
1FAA; 1FA2; 1FAA; 1F6A 0399; # GREEK CAPITAL LETTER OMEGA WITH PSILI AND VARIA AND PROSGEGRAMMENI
|
||||
1FAB; 1FA3; 1FAB; 1F6B 0399; # GREEK CAPITAL LETTER OMEGA WITH DASIA AND VARIA AND PROSGEGRAMMENI
|
||||
1FAC; 1FA4; 1FAC; 1F6C 0399; # GREEK CAPITAL LETTER OMEGA WITH PSILI AND OXIA AND PROSGEGRAMMENI
|
||||
1FAD; 1FA5; 1FAD; 1F6D 0399; # GREEK CAPITAL LETTER OMEGA WITH DASIA AND OXIA AND PROSGEGRAMMENI
|
||||
1FAE; 1FA6; 1FAE; 1F6E 0399; # GREEK CAPITAL LETTER OMEGA WITH PSILI AND PERISPOMENI AND PROSGEGRAMMENI
|
||||
1FAF; 1FA7; 1FAF; 1F6F 0399; # GREEK CAPITAL LETTER OMEGA WITH DASIA AND PERISPOMENI AND PROSGEGRAMMENI
|
||||
1FB3; 1FB3; 1FBC; 0391 0399; # GREEK SMALL LETTER ALPHA WITH YPOGEGRAMMENI
|
||||
1FBC; 1FB3; 1FBC; 0391 0399; # GREEK CAPITAL LETTER ALPHA WITH PROSGEGRAMMENI
|
||||
1FC3; 1FC3; 1FCC; 0397 0399; # GREEK SMALL LETTER ETA WITH YPOGEGRAMMENI
|
||||
1FCC; 1FC3; 1FCC; 0397 0399; # GREEK CAPITAL LETTER ETA WITH PROSGEGRAMMENI
|
||||
1FF3; 1FF3; 1FFC; 03A9 0399; # GREEK SMALL LETTER OMEGA WITH YPOGEGRAMMENI
|
||||
1FFC; 1FF3; 1FFC; 03A9 0399; # GREEK CAPITAL LETTER OMEGA WITH PROSGEGRAMMENI
|
||||
|
||||
# Some characters with YPOGEGRAMMENI are also have no corresponding titlecases
|
||||
|
||||
1FB2; 1FB2; 1FBA 0345; 1FBA 0399; # GREEK SMALL LETTER ALPHA WITH VARIA AND YPOGEGRAMMENI
|
||||
1FB4; 1FB4; 0386 0345; 0386 0399; # GREEK SMALL LETTER ALPHA WITH OXIA AND YPOGEGRAMMENI
|
||||
1FC2; 1FC2; 1FCA 0345; 1FCA 0399; # GREEK SMALL LETTER ETA WITH VARIA AND YPOGEGRAMMENI
|
||||
1FC4; 1FC4; 0389 0345; 0389 0399; # GREEK SMALL LETTER ETA WITH OXIA AND YPOGEGRAMMENI
|
||||
1FF2; 1FF2; 1FFA 0345; 1FFA 0399; # GREEK SMALL LETTER OMEGA WITH VARIA AND YPOGEGRAMMENI
|
||||
1FF4; 1FF4; 038F 0345; 038F 0399; # GREEK SMALL LETTER OMEGA WITH OXIA AND YPOGEGRAMMENI
|
||||
|
||||
1FB7; 1FB7; 0391 0342 0345; 0391 0342 0399; # GREEK SMALL LETTER ALPHA WITH PERISPOMENI AND YPOGEGRAMMENI
|
||||
1FC7; 1FC7; 0397 0342 0345; 0397 0342 0399; # GREEK SMALL LETTER ETA WITH PERISPOMENI AND YPOGEGRAMMENI
|
||||
1FF7; 1FF7; 03A9 0342 0345; 03A9 0342 0399; # GREEK SMALL LETTER OMEGA WITH PERISPOMENI AND YPOGEGRAMMENI
|
||||
|
||||
# ================================================================================
|
||||
# Conditional mappings
|
||||
# ================================================================================
|
||||
|
||||
# Special case for final form of sigma
|
||||
|
||||
03A3; 03C2; 03A3; 03A3; Final_Sigma; # GREEK CAPITAL LETTER SIGMA
|
||||
|
||||
# Note: the following cases for non-final are already in the UnicodeData file.
|
||||
|
||||
# 03A3; 03C3; 03A3; 03A3; # GREEK CAPITAL LETTER SIGMA
|
||||
# 03C3; 03C3; 03A3; 03A3; # GREEK SMALL LETTER SIGMA
|
||||
# 03C2; 03C2; 03A3; 03A3; # GREEK SMALL LETTER FINAL SIGMA
|
||||
|
||||
# Note: the following cases are not included, since they would case-fold in lowercasing
|
||||
|
||||
# 03C3; 03C2; 03A3; 03A3; Final_Sigma; # GREEK SMALL LETTER SIGMA
|
||||
# 03C2; 03C3; 03A3; 03A3; Not_Final_Sigma; # GREEK SMALL LETTER FINAL SIGMA
|
||||
|
||||
# ================================================================================
|
||||
# Locale-sensitive mappings
|
||||
# ================================================================================
|
||||
|
||||
# Lithuanian
|
||||
|
||||
# Lithuanian retains the dot in a lowercase i when followed by accents.
|
||||
|
||||
# Remove DOT ABOVE after "i" with upper or titlecase
|
||||
|
||||
0307; 0307; ; ; lt After_Soft_Dotted; # COMBINING DOT ABOVE
|
||||
|
||||
# Introduce an explicit dot above when lowercasing capital I's and J's
|
||||
# whenever there are more accents above.
|
||||
# (of the accents used in Lithuanian: grave, acute, tilde above, and ogonek)
|
||||
|
||||
0049; 0069 0307; 0049; 0049; lt More_Above; # LATIN CAPITAL LETTER I
|
||||
004A; 006A 0307; 004A; 004A; lt More_Above; # LATIN CAPITAL LETTER J
|
||||
012E; 012F 0307; 012E; 012E; lt More_Above; # LATIN CAPITAL LETTER I WITH OGONEK
|
||||
00CC; 0069 0307 0300; 00CC; 00CC; lt; # LATIN CAPITAL LETTER I WITH GRAVE
|
||||
00CD; 0069 0307 0301; 00CD; 00CD; lt; # LATIN CAPITAL LETTER I WITH ACUTE
|
||||
0128; 0069 0307 0303; 0128; 0128; lt; # LATIN CAPITAL LETTER I WITH TILDE
|
||||
|
||||
# ================================================================================
|
||||
|
||||
# Turkish and Azeri
|
||||
|
||||
# I and i-dotless; I-dot and i are case pairs in Turkish and Azeri
|
||||
# The following rules handle those cases.
|
||||
|
||||
0130; 0069; 0130; 0130; tr; # LATIN CAPITAL LETTER I WITH DOT ABOVE
|
||||
0130; 0069; 0130; 0130; az; # LATIN CAPITAL LETTER I WITH DOT ABOVE
|
||||
|
||||
# When lowercasing, remove dot_above in the sequence I + dot_above, which will turn into i.
|
||||
# This matches the behavior of the canonically equivalent I-dot_above
|
||||
|
||||
0307; ; 0307; 0307; tr After_I; # COMBINING DOT ABOVE
|
||||
0307; ; 0307; 0307; az After_I; # COMBINING DOT ABOVE
|
||||
|
||||
# When lowercasing, unless an I is before a dot_above, it turns into a dotless i.
|
||||
|
||||
0049; 0131; 0049; 0049; tr Not_Before_Dot; # LATIN CAPITAL LETTER I
|
||||
0049; 0131; 0049; 0049; az Not_Before_Dot; # LATIN CAPITAL LETTER I
|
||||
|
||||
# When uppercasing, i turns into a dotted capital I
|
||||
|
||||
0069; 0069; 0130; 0130; tr; # LATIN SMALL LETTER I
|
||||
0069; 0069; 0130; 0130; az; # LATIN SMALL LETTER I
|
||||
|
||||
# Note: the following case is already in the UnicodeData file.
|
||||
|
||||
# 0131; 0131; 0049; 0049; tr; # LATIN SMALL LETTER DOTLESS I
|
||||
File diff suppressed because it is too large
Load Diff
@@ -227,6 +227,7 @@ become operable.
|
||||
* java.lang.VMString::
|
||||
* java.lang.VMThread::
|
||||
* java.lang.VMInstrumentationImpl::
|
||||
* java.lang.VMMath::
|
||||
@end menu
|
||||
|
||||
@node java.lang.VMClass, java.lang.VMObject ,java.lang,java.lang
|
||||
@@ -684,17 +685,18 @@ having returned true, and is thus deprecated as a result.
|
||||
@end itemize
|
||||
@end itemize
|
||||
|
||||
@node java.lang.VMInstrumentationImpl,, java.lang.VMThread, java.lang
|
||||
@node java.lang.VMInstrumentationImpl, java.lang.VMMath, java.lang.VMThread, java.lang
|
||||
@subsection @code{java.lang.VMInstrumentationImpl}
|
||||
|
||||
The @code{java.lang.VMInstrumentationImpl} and
|
||||
@code{java.lang.InstrumentationImpl} provides an implementation of the
|
||||
@code{java.lang.InstrumentationImpl} classes provide an implementation of the
|
||||
@code{java.lang.instrument.Instrument} interface. This interface is for java
|
||||
1.5 and is only in the generics branch.
|
||||
A @code{InstrumentationImpl} object should be given to any agent
|
||||
given in the command line (see the @code{java.lang.instrument} package
|
||||
documentation). A VM has to implement the static native methods of the
|
||||
@code{VMInstrumentationImpl} class.
|
||||
A @code{InstrumentationImpl} object should be created by the VM when agents
|
||||
are given in the command line (see the @code{java.lang.instrument} package
|
||||
documentation). The VM has to set the static field
|
||||
@code{VMClassLoader.instrumenter} to this object. The VM should implement the
|
||||
static native methods of the @code{VMInstrumentationImpl} class.
|
||||
|
||||
@itemize @bullet
|
||||
@item @code{isRedefineClassesSupported()} -- Returns true if the JVM supports
|
||||
@@ -707,21 +709,72 @@ by a specific class loader.
|
||||
@item @code{getObjectSize()} -- Gives the size of an object.
|
||||
@end itemize
|
||||
|
||||
When agents are defined, the VM has to call transformers of the
|
||||
@code{InstrumentImpl} object each time a class is loaded, eg a call to
|
||||
@code{VMClassLoader.defineClass}. The @code{InstrumentationImpl} class defines
|
||||
a method that has to be called before reading a class file in the VM.
|
||||
Instrumentation allows to modify the bytecode of a class before it gets read
|
||||
by the VM. In GNU Classpath, the @code{ClassLoader.defineClass} method calls
|
||||
the @code{VMClassLoader.defineClassWithTransformers} method which first checks
|
||||
if @code{VMClassLoader.instrumenter} is @code{null}. If it's the case, it
|
||||
directly calls @code{VMClassLoader.defineClass}. If it's not the case, the
|
||||
method calls at first the @code{InstrumentationImpl.callTransformers} method,
|
||||
which calls each transformer registered to the @code{InstrumentationImpl}
|
||||
object and returns a new bytecode array. Then, it calls the
|
||||
@code{VMClassLoader.defineClass} method with this new bytecode array.
|
||||
|
||||
The second use of instrumentation is to redefine a class after it has been
|
||||
loaded by the VM. This is done in the Java application by calling the
|
||||
@code{Instrumentation.redefineClasses} method of the standard interface on
|
||||
a @code{Instrumentation} object. The @code{InstrumentationImpl.redefineClasses}
|
||||
method calls the @code{VMInstrumentationImpl.redefineClasses} native method
|
||||
which must be implemented by the VM. The implementation should call the
|
||||
@code{InstrumentationImpl.callTransformers} method.
|
||||
|
||||
@node java.lang.VMMath, , java.lang.VMInstrumentationImpl, java.lang
|
||||
@subsection @code{java.lang.VMMath}
|
||||
|
||||
The @code{VMMath} class provides a series of native methods
|
||||
for some of the mathematical functions present in @code{java.lang.Math}.
|
||||
Classpath provides a default implementation of these which maps the
|
||||
functions to those provided by @code{fdlibm}. VM implementors are welcome
|
||||
to replace this with more efficent implementations, as long as the accuracy
|
||||
contract of these methods, specified in @code{java.lang.Math}, is maintained.
|
||||
|
||||
@itemize @bullet
|
||||
@item @code{callTransformers} -- Calls each transformer registered to
|
||||
the @code{InstrumentationImpl} object and returns a new bytecode file.
|
||||
@item 1.0
|
||||
@itemize @bullet
|
||||
@item @code{sin(double)} -- Returns the sine value for the given angle.
|
||||
@item @code{cos(double)} -- Returns the cosine value for the given angle.
|
||||
@item @code{tan(double)} -- Returns the tangent value for the given angle.
|
||||
@item @code{asin(double)} -- Returns the arc sine value for the given angle.
|
||||
@item @code{acos(double)} -- Returns the arc cosine value for the given angle.
|
||||
@item @code{atan(double)} -- Returns the arc tangent value for the given angle.
|
||||
@item @code{atan2(double,double)} -- Returns the arc tangent of the ratio of
|
||||
the two arguments.
|
||||
@item @code{exp(double)} -- Returns the exponent raised to the given power.
|
||||
@item @code{log(double)} -- Returns the natural logarithm for the given value.
|
||||
@item @code{sqrt(double)} -- Returns the square root of the value.
|
||||
@item @code{pow(double,double)} -- Returns x to the power of y.
|
||||
@item @code{IEEEremainder(double,double)} -- Returns the IEEE 754 remainder
|
||||
for the two values.
|
||||
@item @code{ceil(double)} -- Returns the nearest integer >= the value.
|
||||
@item @code{floor(double)} -- Returns the nearest integer <= the value.
|
||||
@item @code{rint(double)} -- Returns the nearest integer or the even one
|
||||
if the distance between the two is equal.
|
||||
@end itemize
|
||||
@item 1.5
|
||||
@itemize @bullet
|
||||
@item @code{cbrt(double)} -- Returns the cube root of the value.
|
||||
@item @code{cosh(double)} -- Returns the hyperbolic cosine value for the given
|
||||
angle.
|
||||
@item @code{expm1(double)} -- Returns the exponent of the value minus one.
|
||||
@item @code{hypot(double,double)} -- Returns the hypotenuse corresponding to
|
||||
x and y.
|
||||
@item @code{log10(double)} -- Returns the base 10 logarithm of the given value.
|
||||
@item @code{log1p(double)} -- Returns the natural logarithm of the value plus
|
||||
one.
|
||||
@item @code{sinh(double)} -- Returns the hyperbolic sine value for the given
|
||||
angle.
|
||||
@item @code{tanh(double)} -- Returns the hyperbolic tangent value for the given angle.
|
||||
@end itemize
|
||||
@end itemize
|
||||
|
||||
No default implementation is provided in gnu classpath for the
|
||||
@code{VMInstrumentationImpl} methods. A default implementation will perhaps
|
||||
be written, but it might break the @code{ClassLoader/VMClassLoader} interface
|
||||
for calling the @code{InstrumentationImpl.callTransformers} when a class byte
|
||||
code is defined with @code{ClassLoader.defineClass}.
|
||||
|
||||
@node gnu.classpath, java.util, java.lang, Classpath Hooks
|
||||
@section @code{gnu.classpath}
|
||||
|
||||
@@ -0,0 +1,289 @@
|
||||
#!wml --include=..
|
||||
|
||||
#use wml::std::page
|
||||
#use wml::std::lang
|
||||
#use wml::fmt::isolatin
|
||||
#use wml::std::case global=upper
|
||||
|
||||
<lang:star:slice:>
|
||||
|
||||
<set-var last-modified-author="mjw">
|
||||
|
||||
#include <include/macros.wml>
|
||||
|
||||
<header title="GNU Classpath 0.20 Announcement (2006-01-13)">
|
||||
<pre>
|
||||
GNU Classpath 0.20 released
|
||||
|
||||
GNU Classpath, essential libraries for java, is a project to create
|
||||
free core class libraries for use with runtimes, compilers and tools
|
||||
for the java programming language.
|
||||
|
||||
The GNU Classpath developer snapshot releases are not directly aimed
|
||||
at the end user but are meant to be integrated into larger development
|
||||
platforms. For example the GCC (gcj) and Kaffe projects will use the
|
||||
developer snapshots as a base for future versions. More projects based
|
||||
on GNU Classpath: http://www.gnu.org/software/classpath/stories.html
|
||||
|
||||
Some highlights of changes in this release (more extensive list below):
|
||||
|
||||
New StAX pull parser and SAX-over-StAX driver. Full XMLEncoder
|
||||
implementation. The packages javax.sound.sampled, javax.print.attribute
|
||||
and javax.print.event have been implemented. Lots of new datatransfer,
|
||||
print, swing and swing.text work. Performance improvements in the
|
||||
painting/layout mechanism. Additional 1.5 support, including (separate)
|
||||
generic branch release. SecurityManager cleanups and start of review
|
||||
of all Permission checks. Buildable on cygwin. Fully buildable as
|
||||
"in-workspace" library-plus-vm inside (native) Eclipse. Real world
|
||||
Free Swing and CORBA example added.
|
||||
|
||||
GNU Classpath 0.20 also comes in a "generic" version.
|
||||
classpath-0.20-generics contains a version of the core library
|
||||
that uses the new 1.5 language features such as generics and
|
||||
enumerations. ECJ, JamVM, IKVM and Cacao are known to support the
|
||||
generics release (*). And you should be able to run Eclipse 3.1 with
|
||||
it to develop programs that use the new 1.5 language and core library
|
||||
additions. classpath-generics is a work in progress and not as
|
||||
extensively tested as our regular releases. But please try it out if
|
||||
you want to help us test the new 1.5 support of the core libraries.
|
||||
|
||||
(*) There is one additional VM interface needed for the VMClassLoader
|
||||
static final Class defineClassWithTransformers(ClassLoader loader,
|
||||
String name, byte[] data, int offset, int len, ProtectionDomain pd)
|
||||
Which is used for the new java.management.instrumentation support.
|
||||
See the VM Integration Guide for more details:
|
||||
http://www.gnu.org/software/classpath/docs/vmintegration.html
|
||||
|
||||
Thanks to a donation of Berkeley Signal Inc GNU Classpath now has an
|
||||
official autobuilder machine which is used for quality assurance,
|
||||
regression testing, conformance reports and for publishing continous
|
||||
snapshots. The machine can be reached as http://builder.classpath.org/
|
||||
|
||||
40 people actively contributed to this release and made
|
||||
605 CVS commits during the last two months of development
|
||||
(excluding the generics branch work). diffstat since 0.19:
|
||||
617 files changed, 89622 insertions(+), 37478 deletions(-)
|
||||
|
||||
More details about the various changes and contributions below.
|
||||
|
||||
A full list of bug reports fixed for this release can be found at:
|
||||
http://gcc.gnu.org/bugzilla/buglist.cgi?product=classpath&target_milestone=0.20
|
||||
|
||||
The GNU Classpath developers site http://developer.classpath.org/
|
||||
provides detailed information on how to start with helping the GNU
|
||||
Classpath project and gives an overview of the core class library
|
||||
packages currently provided. For each snapshot release generated
|
||||
documentation is provided through the GNU Classpath Tools gjdoc
|
||||
project. A documentation generation framework for java source
|
||||
files used by the GNU project. Full documentation on the currently
|
||||
implementated packages and classes can be found at:
|
||||
http://developer.classpath.org/doc/
|
||||
|
||||
For more information about the project see also:
|
||||
|
||||
- GNU Classpath home page:
|
||||
http://www.gnu.org/software/classpath/
|
||||
|
||||
- Developer information (wiki):
|
||||
http://developer.classpath.org/
|
||||
|
||||
- Full class documentation
|
||||
http://developer.classpath.org/doc/
|
||||
|
||||
- GNU Classpath hackers:
|
||||
http://planet.classpath.org/
|
||||
|
||||
- Autobuilder, current build status, build snapshots:
|
||||
http://builder.classpath.org/
|
||||
|
||||
- Application test pages (wiki)
|
||||
http://developer.classpath.org/mediation/FreeAWTTestApps
|
||||
http://developer.classpath.org/mediation/FreeSwingTestApps
|
||||
http://developer.classpath.org/mediation/FreeSWTTestApps
|
||||
|
||||
- GNU Classpath hacking with Eclipse (wiki)
|
||||
http://developer.classpath.org/mediation/ClasspathHackingWithEclipse
|
||||
|
||||
- GNU Classpath promotion banners:
|
||||
http://developer.classpath.org/mediation/ClasspathBanners
|
||||
|
||||
- GNU Classpath and Friends meeting (Feb 25/26, Brussels, Fosdem):
|
||||
http://www.gnu.org/software/classpath/events/fosdem06.html
|
||||
|
||||
This release depends on gtk+ 2.4 for AWT support. But gtk+ 2.6 or
|
||||
higher is recommended. Included, but not activated by default in this
|
||||
release is a Graphics2D implementation based on the Cairo Graphics
|
||||
framework (http://www.cairographics.org). Enabling this makes programs
|
||||
like JFreeChart and JEdit start up on GNU Classpath based runtimes.
|
||||
To enable this support install the cairo 0.5.x snapshot, configure GNU
|
||||
Classpath with --enable-gtk-cairo.
|
||||
|
||||
One of the major focuses of the GNU Classpath project is expanding and
|
||||
using the Mauve test suite for Compatibility, Completeness and
|
||||
Correctness checking. Various groups around GNU Classpath collaborate
|
||||
on the free software Mauve test suite which contains around 36.000
|
||||
core library tests. Mauve has various modules for testing core class
|
||||
library implementations, byte code verifiers, source to byte code and
|
||||
native code compiler tests. Mauve also contains the Wonka visual test
|
||||
suite and the Jacks Compiler Killer Suite.
|
||||
See for more information: http://www.sourceware.org/mauve/
|
||||
This release passes 35534 out of 36255 Mauve core library tests.
|
||||
|
||||
Conformance reports for the included jaxp support can be found in the
|
||||
doc/README.jaxp file.
|
||||
|
||||
GNU Classpath 0.20 can be downloaded from
|
||||
ftp://ftp.gnu.org/pub/gnu/classpath/
|
||||
or one of the ftp.gnu.org mirrors
|
||||
http://www.gnu.org/order/ftp.html
|
||||
|
||||
File: classpath-0.20.tar.gz
|
||||
MD5sum: 21e34b8e8acb4f7b31296bfaf4ad560a
|
||||
SHA1sum: c1a38c6c6b67d8c8092cc6af6d86d8c99dad272a
|
||||
|
||||
File: classpath-0.20-generics.tar.gz (EXPERIMENTAL)
|
||||
MD5sum: db3c235b1ea497d7d2e5852f167d2b31
|
||||
SHA1sum: 3d5f5cdd3dc51651f8b2c3765e30454931f45419
|
||||
|
||||
New in release 0.20 (Jan 13, 2006)
|
||||
(See the ChangeLog file for a full list of changes.)
|
||||
|
||||
* New StAX pull parser and SAX-over-StAX driver. Lots of DOM, SAX/StAX,
|
||||
XPath and XSLT improvements. Support for XInclude and XML Base added.
|
||||
Conformance is now regularly tested against various test-suites at
|
||||
http://builder.classpath.org/xml/ See also doc/README.jaxp.
|
||||
|
||||
* Full beans XMLEncoder implementation.
|
||||
|
||||
* javax.sound.sampled implementation.
|
||||
|
||||
* javax.print.attribute and javax.print.event implementated.
|
||||
|
||||
* Lots of new datatransfer, print swing and swing.text work and optimization.
|
||||
|
||||
* Additional 1.5 support. Including new (separate) generic branch release.
|
||||
|
||||
* SecurityManager cleanups and start of review of all Permission checks
|
||||
(includes adding lots of new checks to the Mauve test-suite).
|
||||
|
||||
* Buildable on cygwin.
|
||||
|
||||
* Fully buildable as "in-workspace" library-plus-vm inside (native) Eclipse
|
||||
see http://developer.classpath.org/mediation/ClasspathHackingWithEclipse
|
||||
|
||||
* Full example that shows a real world CORBA and Free Swing implementation.
|
||||
See examples/gnu/classpath/examples/CORBA/swing/README.html
|
||||
|
||||
Runtime interface changes:
|
||||
|
||||
* New method VMStackWalker.getClassLoader() was added to avoid an infinite
|
||||
loop between getCallingClassLoader() and Class.getClassLoader().
|
||||
|
||||
* The included fdlibm implementation has seen several cleanups to handle
|
||||
new architectures and namespacing issues (in particular for ppc, darwin
|
||||
and non-C99 compilers). Please double check any arithmetic test against
|
||||
new platforms/runtimes.
|
||||
|
||||
* The gnu.java.net.Plain[Datagram]Socket implementations have been
|
||||
turned into VM reference classes with JNI/Posix implementations.
|
||||
|
||||
New/Untested/Disabled Features:
|
||||
|
||||
The following new features are included, but not ready for
|
||||
production yet. They are explicitly disabled and not supported. But
|
||||
if you want to help with the development of these new features we
|
||||
are interested in feedback. You will have to explicitly enable them
|
||||
to try them out (and they will most likely contain bugs). If you are
|
||||
interested in any of these then please join the mailing-list and
|
||||
follow development in CVS.
|
||||
|
||||
* Cairo Gtk+ Graphics2D support, enabled by giving configure
|
||||
--enable-gtk-cairo.
|
||||
* QT4 AWT peers, enable by giving configure --enable-qt-peer.
|
||||
|
||||
The following people helped with this release:
|
||||
|
||||
Andreas Tobler
|
||||
Qt-4.1 support
|
||||
Andrew Haley
|
||||
Jar work and Jonas fixes
|
||||
Andrew John Hughes
|
||||
1.5 generics language work
|
||||
Anthony Balkissoon
|
||||
Free Swing work
|
||||
Anthony Green
|
||||
Socket work
|
||||
Archie Cobbs
|
||||
New VMStackWalker work and JCVM integration
|
||||
Audrius Meskauskas
|
||||
Free CORBA work and various Free Swing fixes
|
||||
Bryce McKinlay
|
||||
Jar fixes
|
||||
Caolan McNamara
|
||||
Dom fixes and OpenOffice fixes
|
||||
Casey Marshall
|
||||
Crypto work
|
||||
Chris Burdess
|
||||
XML GNU JAXP work
|
||||
Christian Thalinger
|
||||
Various fixes, 64bit work and Cacao integration
|
||||
Dalibor Topic
|
||||
Build cleanups and Kaffe integration
|
||||
David Daney
|
||||
libgcj integration
|
||||
David Gilbert
|
||||
Free Swing work
|
||||
Freebeans
|
||||
Mysaifu Windows CE port and bug reports
|
||||
Fridjof Siebert
|
||||
Hashtable work
|
||||
Gary Benson
|
||||
Securitymanager and Permission work
|
||||
Guilhem Lavaux
|
||||
fdlibm cleanups, performance work and Kaffe integration
|
||||
Ingo Proetel
|
||||
Various fixes
|
||||
Ito Kazumitsu
|
||||
Regex, text and character conversion support
|
||||
Jan Roehrich
|
||||
Datatransfer work
|
||||
Jeroen Frijters
|
||||
SecurityManager, collections and IKVM integration
|
||||
Joao Victor
|
||||
Free Swing Timer work
|
||||
John Zigman
|
||||
SocketChannel testing
|
||||
Keith Seitz
|
||||
JDWP work
|
||||
Lillian Angel
|
||||
Free Swing work
|
||||
Mark Wielaard
|
||||
Bug fixes, packaging and release management
|
||||
Nicolas Geoffray
|
||||
1.5 Class Instrumentation work
|
||||
Paul Jenner
|
||||
Installation and cygwin work
|
||||
Petteri Raty
|
||||
Configuration and Gentoo integration work
|
||||
Raif S. Naffah
|
||||
Security work and Eclipse integration
|
||||
Riccardo Mottola
|
||||
Powerpc work
|
||||
Robert Schuster
|
||||
XMLEncoder and beans work
|
||||
Roman Kennke
|
||||
Free Swing and AWT work, VM interface
|
||||
Roman Schnider
|
||||
AWT work
|
||||
Sven de Marothy
|
||||
Print and GTK+ work
|
||||
Thomas Fitzsimmons
|
||||
Free Swing and AWT work
|
||||
Tom Tromey
|
||||
Eclipse, gcj and gcjx integration
|
||||
Wolfgang Baer
|
||||
javax.print and friends
|
||||
|
||||
We would also like to thank the numerous bug reporters and testers!
|
||||
</pre>
|
||||
<footer>
|
||||
@@ -77,10 +77,10 @@ sub mylink {
|
||||
<download-block>
|
||||
|
||||
<download
|
||||
date="02 November 2005"
|
||||
version="0.19"
|
||||
url="ftp://ftp.gnu.org/gnu/classpath/classpath-0.19.tar.gz"
|
||||
notes="http://www.gnu.org/software/classpath/announce/20051102.html"
|
||||
date="13 January 2006"
|
||||
version="0.20"
|
||||
url="ftp://ftp.gnu.org/gnu/classpath/classpath-0.20.tar.gz"
|
||||
notes="http://www.gnu.org/software/classpath/announce/20060113.html"
|
||||
>
|
||||
|
||||
<!-- download
|
||||
@@ -99,6 +99,12 @@ sub mylink {
|
||||
<boxitem>
|
||||
|
||||
<download-block>
|
||||
<download
|
||||
date="02 November 2005"
|
||||
version="0.19"
|
||||
url="ftp://ftp.gnu.org/gnu/classpath/classpath-0.19.tar.gz"
|
||||
notes="http://www.gnu.org/software/classpath/announce/20051102.html"
|
||||
>
|
||||
<download
|
||||
date="06 September 2005"
|
||||
version="0.18"
|
||||
|
||||
@@ -3,6 +3,11 @@
|
||||
url="events/fosdem06.html">
|
||||
</newsitem>
|
||||
|
||||
<newsitem date="13 Jan 2006">
|
||||
<createlink name="GNU Classpath 0.20"
|
||||
url="announce/20060113.html">
|
||||
</newsitem>
|
||||
|
||||
<newsitem date="02 Nov 2005">
|
||||
<createlink name="GNU Classpath 0.19"
|
||||
url="announce/20051102.html">
|
||||
|
||||
Reference in New Issue
Block a user