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

jp.vmi.selenium.selenese.subcommand.AbstractSubCommand Maven / Gradle / Ivy

package jp.vmi.selenium.selenese.subcommand;

import org.apache.commons.lang3.StringUtils;

import jp.vmi.selenium.selenese.command.ArgumentType;

/**
 * Base implementation of sub-command.
 *
 * @param  the result type of sub-command.
 */
public abstract class AbstractSubCommand implements ISubCommand {

    private final ArgumentType[] argTypes;

    /**
     * Constructor.
     *
     * @param argTypes argument types of this sub-command.
     */
    public AbstractSubCommand(ArgumentType... argTypes) {
        this.argTypes = argTypes;
    }

    @Override
    public String getName() {
        return StringUtils.uncapitalize(getClass().getSimpleName());
    }

    @Override
    public ArgumentType[] getArgumentTypes() {
        return argTypes;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy