Buch
unknown
plain_text
2 years ago
759 B
6
Indexable
public class Buch { private String isbn; private String titel; private String autor; private int veroeffentlichungsjahr; private String status; public Buch(String isbn, String titel, String autor, int veroeffentlichungsjahr) { this.isbn = isbn; this.titel = titel; this.autor = autor; this.veroeffentlichungsjahr = veroeffentlichungsjahr; this.status = "verfügbar"; } public String getIsbn() { return isbn; } public String getTitel() { return titel; } public String getAutor() { return autor; } public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } }
Editor is loading...
Leave a Comment