Advertisement
Guest User

Untitled

a guest
Dec 10th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.92 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6. package hausaufgabensystem;
  7.  
  8. /**
  9.  *
  10.  * @author macbook
  11.  */
  12. public class AufgabeErledigt {
  13.     private Schueler schueler;
  14.     private Aufgabe aufgabe;
  15.     private String abgabe;
  16.     private boolean zuSchwer;
  17.    
  18.     public AufgabeErledigt(Schueler schueler,Aufgabe aufgabe, boolean zuSchwer, String abgabe) {
  19.         this.zuSchwer = zuSchwer;
  20.         this.schueler = schueler;
  21.         this.aufgabe = aufgabe;
  22.         this.abgabe = abgabe;
  23.     }
  24.     public String getAbgabe() {
  25.         return this.abgabe;
  26.     }
  27.     public Schueler getSchueler() {
  28.         return this.schueler;
  29.     }
  30.     public Aufgabe getAufgabe() {
  31.         return this.aufgabe;
  32.     }
  33.     public boolean getZuSchwer() {
  34.         return this.zuSchwer;
  35.     }
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement