You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@poi.apache.org by kl...@apache.org on 2003/07/28 19:01:04 UTC

cvs commit: jakarta-poi/src/testcases/org/apache/poi/hpsf/basic Util.java

klute       2003/07/28 10:01:03

  Modified:    src/testcases/org/apache/poi/hpsf/basic Util.java
  Log:
  
  
  Revision  Changes    Path
  1.5       +14 -1     jakarta-poi/src/testcases/org/apache/poi/hpsf/basic/Util.java
  
  Index: Util.java
  ===================================================================
  RCS file: /home/cvs/jakarta-poi/src/testcases/org/apache/poi/hpsf/basic/Util.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Util.java	26 Jul 2003 06:57:33 -0000	1.4
  +++ Util.java	28 Jul 2003 17:01:03 -0000	1.5
  @@ -90,7 +90,10 @@
        * output stream until end of file is encountered.</p>
        *
        * @param in the input stream to read from
  +     * 
        * @param out the output stream to write to
  +     * 
  +     * @exception IOException if an I/O exception occurs
        */
       public static void copy(final InputStream in, final OutputStream out)
           throws IOException
  @@ -129,6 +132,11 @@
        *
        * @return The POI files. The elements are ordered in the same way
        * as the files in the POI filesystem.
  +     * 
  +     * @exception FileNotFoundException if the file containing the POI 
  +     * filesystem does not exist
  +     * 
  +     * @exception IOException if an I/O exception occurs
        */
       public static POIFile[] readPOIFiles(final File poiFs)
           throws FileNotFoundException, IOException
  @@ -151,6 +159,11 @@
        *
        * @return The POI files. The elements are ordered in the same way
        * as the files in the POI filesystem.
  +     * 
  +     * @exception FileNotFoundException if the file containing the POI 
  +     * filesystem does not exist
  +     * 
  +     * @exception IOException if an I/O exception occurs
        */
       public static POIFile[] readPOIFiles(final File poiFs,
                                            final String[] poiFiles)