Download List

项目描述

Mysaifu JVM is a free Java virtual machine for Windows Mobile.

系统要求

System requirement is not defined

发布: 2009-02-15 23:34
Mysaifu JVM 0.4.3 (1 files 隐藏)

发布版本通知

o Support annotations.
o Fixed AWT library bugs.

o アノテーションをサポートしました
o AWTライブラリのバグ修正を行いました

变更日志

Package java.awt
* FIXED: Resource leak in BufferedImage.getGraphics().(Bug #14778)
* FIXED: Following code does not work correctly. (Bug #15066)
BufferedImage img = new BufferedImage(...);
Graphics2D g = img.createGraphics();
Graphics2D g2 = g.create();
g2.drawRectngle();
g.drawString();

Package java.lang.reflect
* FIXED:Class.getAnnotations(), Method.getAnnotations(), Field.getAnnotations() always returns empty array.(Bug #14996)

パッケージjava.awt
* BufferedImage.getGraphics()でリソースリークが発生していた。(Bug #14778)
* 以下のコードで、g2に対する描画内容が失われていた。 (Bug #15066)
BufferedImage img = new BufferedImage(...);
Graphics2D g = img.createGraphics();
Graphics2D g2 = g.create();
g2.drawRectngle();
g.drawString();

パッケージjava.lang.reflect
* Class.getAnnotations(), Method.getAnnotations(), Field.getAnnotations()を実装した。(Bug #14996)