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

org.mvnsearch.boot.xtermjs.commands.CustomizedCommand Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
package org.mvnsearch.boot.xtermjs.commands;

import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;

/**
 * customized command
 *
 * @author linux_china
 */
public interface CustomizedCommand {

	String[] getNames();

	@Nullable
	Object execute(@NotNull String command, @Nullable String arguments) throws Exception;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy