Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4398388

Doc probs in java.awt.image.DataBufferUShort

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 1.4.0
    • client-libs
    • 2d
    • generic
    • generic



      Name: naC79102 Date: 12/15/2000


       Exception doesn't rise when size takes a negative value.
                            The constructors that show this bug are
      DataBufferUShort(short[] dataArray, int size) ,DataBufferUShort(short[]
      dataArray, int size, int offset), DataBufferUShort(short[][] dataArray,
      int size) and
      DataBufferUShort(short[][] dataArray, int size, int[] offsets).

       Sample code follows....
       package javasoft.sqe.tests.api.java.awt.java2d.image.DataBufferUShort;

       import java.awt.image.DataBufferUShort;
       import java.awt.image.DataBuffer;

       public class test {
       public test() {

        try{
              new DataBufferUShort(new short[] {2,3,4,5},-10);
              }catch(Exception ee)
              { System.out.println("exception raised");}
        try{
              new DataBufferUShort(new short[] {2,3,4,5},-10,3);
              }catch(Exception ee)
              { System.out.println("exception raised");}


        try{
              new DataBufferUShort(new short[][] {{2,3},{3,4}},-5);
             }catch(Exception ee)
              { System.out.println("exception raised");}

        try{
              new DataBufferUShort(new short[][] {{2,3},{3,4}},-5,new int[]
      {1,2});
             }catch(Exception ee)
              { System.out.println("exception raised");}


      }
       public static void main(String[] args) {
              new test();
                                                            }
      }

      ======================================================================

            Unassigned Unassigned
            duke J. Duke
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: