Skip to end of metadata
Go to start of metadata
You are viewing an old version of this page. View the current version.
Compare with Current
View Page History
Version 1
Next »
Inhalt:
Optimale Datenstruktur (Datenbank):
Beschriftung | X-Axis | Y-Axis | Kategorie | BubbleGröße |
---|
"DEU" | 68.49 | 2.96 | "Europe" | 61801570 |
"GBR" | 79.66 | 1.67 | "Europe" | 81902307 |
"ISR" | 78.09 | 2.78 | "Middle East" | 31090763 |
... |
|
|
|
|
Optimale Objektstruktur (Java)
public class BubbleChartObject {
private String description;
private Double x_value;
private Double y_value;
private String category;
private Double bubbleValue;
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public Double getX_value() {
return x_value;
}
public void setX_value(Double x_value) {
this.x_value = x_value;
}
public Double getY_value() {
return y_value;
}
public void setY_value(Double y_value) {
this.y_value = y_value;
}
public String getCategory() {
return category;
}
public void setCategory(String category) {
this.category = category;
}
public Double getBubbleValue() {
return bubbleValue;
}
public void setBubbleValue(Double bubbleValue) {
this.bubbleValue = bubbleValue;
}
}