...
Code Block |
---|
language | java |
---|
theme | Eclipse |
---|
firstline | 1 |
---|
linenumbers | true |
---|
|
public class BarChartObjectComboChartObject {
private String Y_Achseyvalue;
private String kategoriecategory;
private Integer X_Achsexvalue;
public String getY_AchsegetYvalue() {
return this.Y_Achseyvalue;
}
public void setY_AchsesetYvalue(final String y_Achseyvalue) {
this.Y_Achseyvalue = y_Achseyvalue;
}
public String getKategoriegetCategory() {
return this.kategoriecategory;
}
public void setKategoriesetCategory(final String kategoriecategory) {
this.kategoriecategory = kategoriecategory;
}
public Integer getX_AchsegetXvalue() {
return this.X_Achsexvalue;
}
public void setX_AchsesetXvalue(final Integer x_Achsexvalue) {
this.X_Achsexvalue = x_Achsexvalue;
}
} |
Beispiel füllen der Daten:
...