-
Bug
-
Resolution: Unresolved
-
P4
-
None
-
1.4.0
-
generic
-
generic
Name: naC79102 Date: 12/14/2000
Few methods in java.awt.image.DataBufferShort state that the
number of elements in a datarray must be larger than the
size specified,to hold the elements. However this condition is never
actually
checked by the API and an exception is not thrown if the size is
increased.
Sample code follows....
package
javasoft.sqe.tests.api.java.awt.java2d.image.DataBufferShort;
import java.awt.image.DataBufferShort;
import java.awt.image.DataBuffer;
public class test {
public test() {
try{
new DataBufferShort(new short[] {2,3,4,5},10);
System.out.println("ran without error");
}catch(Exception ee)
{ System.out.println("ran with error");}
try{
new DataBufferShort(new short[][] {{2,3},{3,4}},5,new
int[]{1,2});
System.out.println("ran without error");
}catch(Exception ee)
{ System.out.println("ran with error");}
try{
new DataBufferShort(new short[]{1,2,3,4,1,3},2,3);
System.out.println("ran without error");
}catch(Exception ee)
{ System.out.println("ran with error");}
}
public static void main(String[] args) {
new test();
}
}
======================================================================
- duplicates
-
JDK-4398387 Doc probs in java.awt.image.DataBufferUShort
-
- Closed
-