diff options
author | Archie Cobbs <archie@dellroad.org> | 2005-01-07 15:08:21 +0000 |
---|---|---|
committer | Archie Cobbs <archie@dellroad.org> | 2005-01-07 15:08:21 +0000 |
commit | ec858596f78dd4ddc318edd3d3f4ec537780c854 (patch) | |
tree | ea7ebb6d209ae7bbc3a1c34e3bbbea043cfbc3ec /NEWS | |
parent | 53a43c88b4600340bd75f20120d26ed6afdc2065 (diff) | |
download | classpath-ec858596f78dd4ddc318edd3d3f4ec537780c854.tar.gz |
Re-committing now that the 0.13 release has been tagged:
* NEWS: Document changes.
* java/lang/Class.java (newInstance(), getClassLoader(),
forName(String), forName(String, boolean, ClassLoader)):
Use new VMStackWalker methods.
* java/lang/ClassLoader.java (getParent(), getSystemClassLoader()):
Likewise.
* java/lang/Package.java (getPackages()): Likewise.
* java/lang/SecurityManager.java (getClassContext()): Likewise.
* java/util/ResourceBundle.java (getBundle()): Likewise.
* java/lang/Runtime.java (load(), loadLibrary()): Load the native
library using the calling class' class loader.
* java/lang/System.java (load(), loadLibrary()): Likewise.
(currentClassLoader()): implement via currentLoadedClass().
* vm/reference/gnu/classpath/VMStackWalker.java: New class.
* vm/reference/java/lang/VMRuntime.java (nativeLoad()):
Add a ClassLoader parameter.
* vm/reference/java/lang/VMSecurityManager.java: Removed.
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,11 @@ +New in release 0.14 + +* VMSecurityManager has been replaced by gnu.classpath.VMStackWalker. + currentClassLoader() is no longer needed, and there are also two new + methods with non-native implementations. VM implementors are encouraged + to provide more efficient versions. +* VMRuntime.nativeLoad() now takes an additional ClassLoader parameter. + New in release 0.13 (Jan 6, 2005) * The http url protocol handler has been replaced with a full HTTP/1.1 |