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

net.thevpc.nuts.toolbox.nsh.jshell.JShellFunctionManager Maven / Gradle / Ivy

There is a newer version: 0.8.3.1
Show newest version
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package net.thevpc.nuts.toolbox.nsh.jshell;

/**
 *
 * @author thevpc
 */
public interface JShellFunctionManager {

    JShellFunction findFunction(String command);

    boolean containsFunction(String cmd);

    void declareFunction(JShellFunction cmd);

    void declareFunctions(JShellFunction... cmds);

    boolean unset(String name);

    JShellFunction[] getAll();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy