timeBench.ui.actions.AbstractRangeAction 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.ui.actions;
import javax.swing.AbstractAction;
import javax.swing.Action;
import timeBench.action.layout.timescale.RangeAdapter;
/**
* Abstract base class for {@link Action}s that operate on a
* {@link RangeAdapter}.
*
* @author peterw
*
*/
public abstract class AbstractRangeAction extends AbstractAction {
private static final long serialVersionUID = 885335569017703949L;
private RangeAdapter rangeModel;
public RangeAdapter getRangeModel() {
return rangeModel;
}
public void setRangeModel(RangeAdapter rangeModel) {
this.rangeModel = rangeModel;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy