com.g2forge.alexandria.command.stdio.IStandardIO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ax-command Show documentation
Show all versions of ax-command Show documentation
Library for command line programming.
package com.g2forge.alexandria.command.stdio;
public interface IStandardIO {
public I getStandardInput();
public O getStandardOutput();
public O getStandardError();
}