17 lines
310 B
Plaintext
17 lines
310 B
Plaintext
|
import java.util.Date;
|
||
|
|
||
|
public class FahrzeugInfo {
|
||
|
|
||
|
// benötigte Variablen
|
||
|
Date d1;
|
||
|
boolean hatBezahlt;
|
||
|
int schulden;
|
||
|
|
||
|
// Konstruktor mit übergebenen Werten
|
||
|
public FahrzeugInfo(Date d1, boolean hatBezahlt, int schulden) {
|
||
|
this.d1 = d1;
|
||
|
this.hatBezahlt = hatBezahlt;
|
||
|
this.schulden = schulden;
|
||
|
}
|
||
|
}
|