MCPcopy Index your code
hub / github.com/AuthMe/AuthMeReloaded / ToolTask

Interface ToolTask

authme-tools/src/test/java/tools/utils/ToolTask.java:9–25  ·  view source on GitHub ↗

Common interface for tool tasks. Note that the implementing tasks are instantiated with the default constructor. It is required that it be public.

Source from the content-addressed store, hash-verified

7 * with the default constructor. It is required that it be public.
8 */
9public interface ToolTask {
10
11 /**
12 * Return the name of the task.
13 *
14 * @return Name of the task
15 */
16 String getTaskName();
17
18 /**
19 * Execute the task.
20 *
21 * @param scanner Scanner to prompt the user with for options. Do not close it.
22 */
23 void execute(Scanner scanner);
24
25}

Implementers 4

DrawDependencyauthme-tools/src/test/java/tools/depen
VerifyMessagesTaskauthme-tools/src/test/java/tools/messa
VerifyHelpTranslationsauthme-tools/src/test/java/tools/helpt
UpdateDocsTaskauthme-tools/src/test/java/tools/docs/

Calls

no outgoing calls

Tested by

no test coverage detected