public class Flasche { public final int LEER_GEWICHT = 600; private int fuellstand = 700; public Flasche() { } public int getFuellstand() { return fuellstand; } public int getGewicht() { return LEER_GEWICHT + fuellstand; } }