All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.onetwo.common.commandline.CmdContext Maven / Gradle / Ivy

There is a newer version: 4.7.2
Show newest version
package org.onetwo.common.commandline;

import java.io.BufferedReader;
import java.io.IOException;

public interface CmdContext {
	
	public Object getVar(Object name);
	
	public  T getVar(Class clazz);
	
	public void setVar(Object key, Object value);
	
	public BufferedReader getCmdInput();
	public String nextInput(String tips, String def, InputValidator...validators) throws IOException;
	
	public void setCmdInput(BufferedReader input);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy