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

astra.debugger.DebuggerCommand Maven / Gradle / Ivy

There is a newer version: 1.4.2
Show newest version
package astra.debugger;

public interface DebuggerCommand {
	public static final String FAIL = "FAIL";
	public static final String OK = "OK";
	public static final String UNKNOWN = "?";
	
	public String execute(DebuggerWorker worker, String[] arguments);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy