27 lines
582 B
Java
27 lines
582 B
Java
public class WarenkorbEintrag {
|
|
private Produkt produkt;
|
|
private int anzahl;
|
|
|
|
public WarenkorbEintrag(Produkt produkt, int anzahl) {
|
|
this.produkt = produkt;
|
|
this.anzahl = anzahl;
|
|
}
|
|
|
|
public Produkt getProdukt() {
|
|
return produkt;
|
|
}
|
|
|
|
public int getAnzahl() {
|
|
return anzahl;
|
|
}
|
|
|
|
public void setAnzahl(int anzahl) {
|
|
this.anzahl = anzahl;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return String.format("%s - Anzahl: %d, Preis: %.2f Euro", produkt.getName(), anzahl, produkt.getPreis());
|
|
}
|
|
}
|