macrointerface.java

来自「一个纯java写的神经网络源代码」· Java 代码 · 共 25 行

JAVA
25
字号
/* Generated by Together */package org.joone.script;public interface MacroInterface extends org.joone.engine.NeuralNetListener {    /** Exports an internal variable in the script's namespace     * @param name - the name of the variable in the script's namespace     * @param jObject - the value of the exported variable     */    public void set(String name, Object jObject);    /** Run a generic macro contained in a text     * @parameter the text of the macro     */    public void runMacro(String text);    /** Getter for property macroManager.     * @return Value of property macroManager.     */    public MacroManager getMacroManager();    /** Setter for property macroManager.     * @param macroManager New value of property macroManager.     */    public void setMacroManager(MacroManager macroManager);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?