⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 function.java

📁 用applet实现很多应用小程序
💻 JAVA
字号:
package prefuse.data.expression;

/**
 * Expression sub-interface representing a function in the prefuse
 * expression language.
 * 
 * @author <a href="http://jheer.org">jeffrey heer</a> 
 */
public interface Function extends Expression {

    /** Constant indicating a vriable argument count */
    public static final int VARARGS = -1;
    
    /**
     * Get the name of this function.
     * @return the function name
     */
    public String getName();
    
    /**
     * Add a parameter value sub-expression to this function.
     * @param e the parameter sub-expression
     */
    public void addParameter(Expression e);
    
    /**
     * Get the maximum number of parameters accepted by this Function.
     * @return the maximum number of parametes accepted, or
     * {@link #VARARGS} is the number is variable.
     */
    public int getParameterCount();
    
} // end of interface Function

⌨️ 快捷键说明

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