< prev index next >

core/JemmyCore/src/org/jemmy/image/pixel/PNGLoader.java

Print this page

        

@@ -77,11 +77,11 @@
     }
 
     /**
      * Decodes image from an input stream passed into constructor.
      * @return a BufferedImage object
-     * @throws IOException
+     * @throws IOException todo document
      */
     public Raster decode() throws IOException {
         return decode(true);
     }
 

@@ -89,11 +89,11 @@
 
     /**
      * Decodes image from an input stream passed into constructor.
      * @return a BufferedImage object
      * @param closeStream requests method to close the stream after the image is read
-     * @throws IOException
+     * @throws IOException todo document
      */
     public Raster decode(boolean closeStream) throws IOException {
 
         byte[] id = read(12);
         checkEquality(id, new byte[] {-119, 80, 78, 71, 13, 10, 26, 10, 0, 0, 0, 13});
< prev index next >