package com.sandu.ximon.admin.dto.nova;
|
|
public class PlayerWidgetScrollAttribute {
|
|
private PlayerWidgetScrollAttributeAnimation animation;
|
|
private Integer speed;
|
|
private boolean isHeadTail;
|
|
public PlayerWidgetScrollAttribute(PlayerWidgetScrollAttributeAnimation attributeAnimation, Integer speed) {
|
this.animation = attributeAnimation;
|
this.speed = speed;
|
setHeadTail(true);
|
}
|
|
public boolean isHeadTail() {
|
return isHeadTail;
|
}
|
|
public void setHeadTail(boolean isHeadTail) {
|
this.isHeadTail = isHeadTail;
|
}
|
|
public PlayerWidgetScrollAttributeAnimation getAnimation() {
|
return animation;
|
}
|
|
public void setAnimation(PlayerWidgetScrollAttributeAnimation animation) {
|
this.animation = animation;
|
}
|
|
public Integer getSpeed() {
|
return speed;
|
}
|
|
public void setSpeed(Integer speed) {
|
this.speed = speed;
|
}
|
}
|