
timeBench.data.expression.TemporalElementArrayExpression Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of timebench Show documentation
Show all versions of timebench Show documentation
TimeBench, a flexible, easy-to-use, and reusable software library written in Java that provides foundational data structures and algorithms for time- oriented data in Visual Analytics.
The newest version!
package timeBench.data.expression;
import java.util.ArrayList;
import prefuse.data.Schema;
import prefuse.data.Tuple;
import prefuse.data.expression.AbstractExpression;
import timeBench.data.TemporalElement;
import timeBench.data.TemporalObject;
/**
*
*
*
* Added: / TL
* Modifications:
*
*
* @author Tim Lammarsch
*
*/
public class TemporalElementArrayExpression extends AbstractExpression {
private TemporalElement[] arrayBuffer;
public TemporalElementArrayExpression(ArrayList source) {
updateBuffer(source);
}
/**
* @param source
*/
public void updateBuffer(ArrayList source) {
arrayBuffer = new TemporalElement[source.size()];
for(int i=0; i
© 2015 - 2025 Weber Informatics LLC | Privacy Policy