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

jp.vmi.selenium.selenese.command.ICommandFactory Maven / Gradle / Ivy

package jp.vmi.selenium.selenese.command;

/**
 * Interface of command factory.
 */
public interface ICommandFactory {

    /**
     * Constructs selenese command.
     *
     * @param index index in selenese script file.
     * @param name command name.
     * @param args command arguments.
     * @return ICommand instance.
     */
    ICommand newCommand(int index, String name, String... args);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy