[ https://issues.apache.org/jira/browse/HARMONY-4491?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Alexey Petrenko reassigned HARMONY-4491:
----------------------------------------
Assignee: Alexey Petrenko (was: Alexei Zakharov)
> [classlib][awt] Exception when trying to create custom cursor
> -------------------------------------------------------------
>
> Key: HARMONY-4491
> URL: https://issues.apache.org/jira/browse/HARMONY-4491
> Project: Harmony
> Issue Type: Bug
> Components: Classlib
> Reporter: Dmitriy Matveev
> Assignee: Alexey Petrenko
> Attachments: Harmony-4491-Fix.patch, Harmony-4491-Test.patch
>
>
> import java.awt.Cursor;
> import java.awt.Point;
> import java.awt.Toolkit;
> public class TestCursor {
> public static void main(String[] args) {
> Toolkit tk = Toolkit.getDefaultToolkit();
> byte b[] = { (byte) 0 };
> try{
> Cursor blankCursor =
> tk.createCustomCursor( tk.createImage( b ), new Point(0, 0), "" );
> }catch(IndexOutOfBoundsException e){
> e.printStackTrace();
> }
> }
> }
> Exception below:
> java.lang.IndexOutOfBoundsException: invalid hotSpot
> at java.awt.Toolkit.createCustomCursor(Toolkit.java:740)
> at JavaTest.TestFonts2D.main(TestFonts2D.java:51)
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
|