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

br.com.digilabs.jqplot.elements.Animation Maven / Gradle / Ivy

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 ms
     */
    public Animation setSpeed(Integer speed) {
        this.speed = speed;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy