< prev index next >

core/JemmyCore/src/org/jemmy/env/TestOut.java

Print this page

        

@@ -126,11 +126,11 @@
     }
 
     /**
      * Read one byte from input.
      * @return an int from input stream.
-     * @exception IOException
+     * @exception IOException todo document
      */
     public int read() throws IOException {
         if (input != null) {
             return (input.read());
         } else {

@@ -139,11 +139,11 @@
     }
 
     /**
      * Read a line from input.
      * @return a line from input stream.
-     * @exception IOException
+     * @exception IOException todo document
      */
     public String readln() throws IOException {
         if (buffInput != null) {
             return (buffInput.readLine());
         } else {
< prev index next >