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

prefuse.visual.DecoratorItem 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.visual;

/**
 * VisualItem that "decorates" another VisualItem. DecoratorItem instances
 * allow the decorated item to be retrieved, and used to compute visual
 * properties for this item. Example decorator items might include attaching
 * an external label to an item or adding interactive handles to another
 * item.
 * 
 * @author jeffrey heer
 */
public interface DecoratorItem extends VisualItem {

    /**
     * Get the VisualItem that this item is decorating.
     * @return the decorated VisualItem
     */
    public VisualItem getDecoratedItem();
    
} // end of interface DecoratorItem




© 2015 - 2025 Weber Informatics LLC | Privacy Policy