#513 Mark tools runnable by command line with specific interface

This commit is contained in:
ljacqu
2016-05-08 17:22:02 +02:00
parent 662f28ab4f
commit 23da023d53
5 changed files with 59 additions and 30 deletions
@@ -0,0 +1,13 @@
package tools.utils;
/**
* Interface for tasks that can be run automatically, i.e. without any user input.
*/
public interface AutoToolTask extends ToolTask {
/**
* Execute the task with default settings.
*/
void executeDefault();
}