01: /*
02: * Created by IntelliJ IDEA.
03: * User: sg426575
04: * Date: Apr 20, 2004
05: * Time: 1:25:57 AM
06: */
07: package com.technoetic.xplanner.importer.util;
08:
09: import java.io.*;
10:
11: public class IOStreamFactory {
12: public InputStream newInputStream(String path) throws IOException {
13: return new FileInputStream(path);
14: }
15: }
|