com.datastax.insight.core.dag.Shape Maven / Gradle / Ivy
The newest version!
package com.datastax.insight.core.dag;
import org.codehaus.jackson.map.annotate.JsonSerialize;
@JsonSerialize(include= JsonSerialize.Inclusion.NON_NULL)
public class Shape {
private String shape;
private int width;
private int height;
private String color;
private int border;
private String borderColor;
private int x;
private int y;
private boolean readonly;
public String getShape() {
return shape;
}
public void setShape(String shape) {
this.shape = shape;
}
public int getWidth() {
return width;
}
public void setWidth(int width) {
this.width = width;
}
public int getHeight() {
return height;
}
public void setHeight(int height) {
this.height = height;
}
public String getColor() {
return color;
}
public void setColor(String color) {
this.color = color;
}
public int getBorder() {
return border;
}
public void setBorder(int border) {
this.border = border;
}
public String getBorderColor() {
return borderColor;
}
public void setBorderColor(String borderColor) {
this.borderColor = borderColor;
}
public int getX() {
return x;
}
public void setX(int x) {
this.x = x;
}
public int getY() {
return y;
}
public void setY(int y) {
this.y = y;
}
public boolean isReadonly() {
return readonly;
}
public void setReadonly(boolean readonly) {
this.readonly = readonly;
}
}