public abstract class Samsung { double preis; String produktTyp; public Samsung(double preis, String produktTyp) { this.preis = preis; this.produktTyp = produktTyp; } }