/* * $Id: Console.java 115 2008-03-03 11:13:15Z baconevi $ * * {License} */ package ase.awk; public class Console extends IO { public static final int MODE_READ = Extio.MODE_CONSOLE_READ; public static final int MODE_WRITE = Extio.MODE_CONSOLE_WRITE; protected Console (Awk awk, Extio extio) { super (awk, extio); } public void setFileName (String name) throws Exception { if (getMode() == MODE_READ) { awk.setfilename (getRunId(), name); } else { awk.setofilename (getRunId(), name); } } }