java/sql-dk/src/info/globalcode/sql/dk/CLIOptions.java
branchv_0
changeset 146 4f4f515df807
parent 104 245f1b88a3e6
child 155 eb3676c6929b
--- a/java/sql-dk/src/info/globalcode/sql/dk/CLIOptions.java	Wed Jan 08 14:50:26 2014 +0100
+++ b/java/sql-dk/src/info/globalcode/sql/dk/CLIOptions.java	Wed Jan 08 19:18:52 2014 +0100
@@ -22,6 +22,7 @@
 import info.globalcode.sql.dk.InfoLister.InfoType;
 import info.globalcode.sql.dk.configuration.Properties;
 import info.globalcode.sql.dk.configuration.Property;
+import java.io.InputStream;
 import java.io.OutputStream;
 import java.util.ArrayList;
 import java.util.Collection;
@@ -250,4 +251,8 @@
 	public OutputStream getOutputStream() {
 		return System.out;
 	}
+
+	public InputStream getInputStream() {
+		return System.in;
+	}
 }