home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / VCafe / JCLASS.BIN / KLG.JAR / jclass / chart / FileDataSource.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-12-05  |  539 b   |  17 lines

  1. package jclass.chart;
  2.  
  3. import java.io.File;
  4. import java.io.FileInputStream;
  5. import java.io.FileNotFoundException;
  6. import java.io.IOException;
  7.  
  8. public class FileDataSource extends InputStreamDataSource {
  9.    public FileDataSource(String var1) throws FileNotFoundException, IOException {
  10.       super(new FileInputStream(var1));
  11.    }
  12.  
  13.    public FileDataSource(File var1) throws FileNotFoundException, IOException {
  14.       super(new FileInputStream(var1));
  15.    }
  16. }
  17.