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

com.paritytrading.philadelphia.client.command.Command Maven / Gradle / Ivy

There is a newer version: 0.5.0
Show newest version
package com.paritytrading.philadelphia.client.command;

import com.paritytrading.philadelphia.client.TerminalClient;
import java.io.IOException;
import java.util.Scanner;

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