br.com.digilabs.jqplot.elements.Animation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jqplot4java Show documentation
Show all versions of jqplot4java Show documentation
This project provides a Java library for utilizing JqPlot Pure Javascript (http://www.jqplot.com/).
The newest version!
package br.com.digilabs.jqplot.elements;
/**
*
* @author sbalamaci
*/
public class Animation implements Element {
private static final long serialVersionUID = -4476584768663107303L;
private Integer speed;
/**
* @return animation speed
*/
public Integer getSpeed() {
return speed;
}
/**
* set animation speed in ms
* @param speed in
* @return Animation
*/
public Animation setSpeed(Integer speed) {
this.speed = speed;
return this;
}
}