public interface Datum{ int getDay(); int getMonth(); int getYear(); String getWeekDay(); Datum heute(); void addDays(int d); }