You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Alexei Zakharov (JIRA)" <ji...@apache.org> on 2007/03/13 17:05:10 UTC

[jira] Updated: (HARMONY-1658) [class][awt] BufferedImage.isTileWritable(int,int) throws IllegalArgumentException while Harmony throws ArrayIndexOutOfBoundsException

     [ https://issues.apache.org/jira/browse/HARMONY-1658?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alexei Zakharov updated HARMONY-1658:
-------------------------------------

    Priority: Minor  (was: Major)

> [class][awt] BufferedImage.isTileWritable(int,int) throws IllegalArgumentException while Harmony throws ArrayIndexOutOfBoundsException
> --------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-1658
>                 URL: https://issues.apache.org/jira/browse/HARMONY-1658
>             Project: Harmony
>          Issue Type: Bug
>          Components: Non-bug differences from RI
>            Reporter: Denis Kishenko
>            Priority: Minor
>
> RI implementation of BufferedImage.isTileWritable(int,int) throws IllegalArgumentException while Harmony throws ArrayIndexOutOfBoundsException to follow spec.
> ========== Spec =============
> public boolean isTileWritable(int tileX, int tileY)
> Throws: 
> ArrayIndexOutOfBoundsException - if both tileX and tileY are not equal to 0
> ============ Test ================
> import java.awt.image.*;
> public class Test {
>     public static void main(String[] argv) {
>         BufferedImage img = new BufferedImage(10, 16, BufferedImage.TYPE_4BYTE_ABGR);
>         img.isTileWritable(1,1);
>     }
> }
> ========== RI output =============
> java.lang.IllegalArgumentException: Only 1 tile in image
>     at java.awt.image.BufferedImage.isTileWritable(BufferedImage.java:1526)
>     at Test.main(Test.java:6)
> ========= Harmony output ========
> java.lang.ArrayIndexOutOfBoundsException: Both tileX and tileY are not equal to 0
>     at java.awt.image.BufferedImage.isTileWritable(BufferedImage.java:603)

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.