
prefuse.visual.VisualTupleSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of prefuse-vienna Show documentation
Show all versions of prefuse-vienna Show documentation
Prefuse is a set of software tools for creating rich interactive data visualizations in the Java programming language.
The newest version!
/**
* Copyright (c) 2004-2006 Regents of the University of California.
* See "license-prefuse.txt" for licensing terms.
*/
package prefuse.visual;
import prefuse.Visualization;
import prefuse.data.tuple.TupleSet;
/**
* TupleSet sub-interface for TupleSet instances that contain VisualItems,
* Tuple instances that include visual properties.
*
* @author jeffrey heer
*/
public interface VisualTupleSet extends TupleSet {
/**
* Get the Visualization associated with this VisualTupleSet.
* @return the Visualization instance
*/
public Visualization getVisualization();
/**
* Get the data group name for this VisualTupleSet.
* @return the data group name
*/
public String getGroup();
} // end of interface VisualTupleSet
© 2015 - 2025 Weber Informatics LLC | Privacy Policy