public class Flugzeug {
  private String Hersteller;
  private String Typ;
  private int Sitzplaetze;
  
  public String getHersteller() {
    return Hersteller;
  }
  
  public void setHersteller(String Hersteller) {
    this.Hersteller = Hersteller;
  }
  
  public String getTyp() {
    return Typ;
  }

  public void setTyp(String Typ) {
    this.Typ = Typ;
  }
  
  public int getSitzplaetze() {
    return Sitzplaetze;
  }
  
  public void setSitzplaetze(int Sitzplaetze) {
    this.Sitzplaetze = Sitzplaetze;
  }

}
