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

prefuse.data.expression.ExpressionVisitor 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;

/**
 * Visitor interface for objects that visit each sub-expression of an
 * Expression instance, performing some computation or data collection.
 * 
 * @author jeffrey heer
 */
public interface ExpressionVisitor {

    /**
     * Callback made when visiting a particular expression.
     * @param expr the expression currently being visited.
     */
    public void visitExpression(Expression expr);
    
    /**
     * Callback to signal that the visitor has just descended
     * a level in the Expression tree.
     */
    public void down();
    
    /**
     * Callback to signal that the visitor has just ascended
     * a level in the Expression tree.
     */
    public void up();
    
} // end of interface ExpressionVisitor




© 2015 - 2025 Weber Informatics LLC | Privacy Policy