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

io.github.xfournet.jconfig.cli.command.HelpCommand Maven / Gradle / Ivy

There is a newer version: 0.8.0
Show newest version
package io.github.xfournet.jconfig.cli.command;

import com.beust.jcommander.Parameters;
import io.github.xfournet.jconfig.cli.Command;
import io.github.xfournet.jconfig.cli.CommandContext;

@Parameters(commandNames = "help", commandDescription = "Display help")
public class HelpCommand implements Command {

    @Override
    public void execute(CommandContext ctx) {
        ctx.getJCommander().usage();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy