2025-02-18 09:44:58 +01:00
|
|
|
|
2025-02-18 21:20:07 +12:00
|
|
|
|
2025-02-18 09:44:58 +01:00
|
|
|
|
|
|
|
|
public interface Datenelement
|
|
|
|
|
{
|
|
|
|
|
//hier Methodenköpfe eintragen in der Form "int beispielMethode(int y);"
|
|
|
|
|
public boolean istGleich(Datenelement d);
|
|
|
|
|
public boolean istGrößerAls(Datenelement d);
|
|
|
|
|
public String gibSchlüssel();
|
|
|
|
|
}
|