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

org.jvirtanen.philadelphia.client.command.Command Maven / Gradle / Ivy

The newest version!
package org.jvirtanen.philadelphia.client.command;

import java.io.IOException;
import java.util.Scanner;
import org.jvirtanen.philadelphia.client.TerminalClient;

public interface Command {

    void execute(TerminalClient client, Scanner arguments) throws CommandException, IOException;

    String getName();

    String getDescription();

    String getUsage();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy