39 lines
820 B
Java
39 lines
820 B
Java
public class Produkt {
|
|
private String name;
|
|
private int id;
|
|
private float preis;
|
|
private float gewicht;
|
|
private int lagerbestand;
|
|
|
|
// Konstruktor
|
|
public Produkt(String name, int id, float preis, float gewicht, int lagerbestand) {
|
|
this.name = name;
|
|
this.id = id;
|
|
this.preis = preis;
|
|
this.gewicht = gewicht;
|
|
this.lagerbestand = lagerbestand;
|
|
}
|
|
|
|
// Getter
|
|
public int getId() {
|
|
return id;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public float getPreis() {
|
|
return preis;
|
|
}
|
|
|
|
public float getGewicht() {
|
|
return gewicht;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return String.format("%s - ID: %d, Preis: %.2f Euro, Gewicht: %.2f kg", name, id, preis, gewicht);
|
|
}
|
|
}
|