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

prefuse.data.expression.Function Maven / Gradle / Ivy

Go to download

Prefuse is a set of software tools for creating rich interactive data visualizations in the Java programming language.

The newest version!
package prefuse.data.expression;

/**
 * Expression sub-interface representing a function in the prefuse
 * expression language.
 * 
 * @author jeffrey heer 
 */
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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy