java/sql-dk/src/info/globalcode/sql/dk/CLIOptions.java
branchv_0
changeset 146 4f4f515df807
parent 104 245f1b88a3e6
child 155 eb3676c6929b
     1.1 --- a/java/sql-dk/src/info/globalcode/sql/dk/CLIOptions.java	Wed Jan 08 14:50:26 2014 +0100
     1.2 +++ b/java/sql-dk/src/info/globalcode/sql/dk/CLIOptions.java	Wed Jan 08 19:18:52 2014 +0100
     1.3 @@ -22,6 +22,7 @@
     1.4  import info.globalcode.sql.dk.InfoLister.InfoType;
     1.5  import info.globalcode.sql.dk.configuration.Properties;
     1.6  import info.globalcode.sql.dk.configuration.Property;
     1.7 +import java.io.InputStream;
     1.8  import java.io.OutputStream;
     1.9  import java.util.ArrayList;
    1.10  import java.util.Collection;
    1.11 @@ -250,4 +251,8 @@
    1.12  	public OutputStream getOutputStream() {
    1.13  		return System.out;
    1.14  	}
    1.15 +
    1.16 +	public InputStream getInputStream() {
    1.17 +		return System.in;
    1.18 +	}
    1.19  }