Advertisement
Guest User

Untitled

a guest
Oct 18th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. import java.util.ArrayList;
  2. import java.util.List;
  3.  
  4. public class Zadanie
  5. {
  6. private String nazwa;
  7. private String typ;
  8. private String waga;
  9. private String czasPoczatkowy;
  10. private String CzasKoncowy;
  11.  
  12. public Zadanie(String nazwa, String typ, String waga, String czasPoczatkowy, String czasKoncowy)
  13. {
  14. this.nazwa = nazwa;
  15. this.typ = typ;
  16. this.waga = waga;
  17. this.czasPoczatkowy = czasPoczatkowy;
  18. CzasKoncowy = czasKoncowy;
  19. }
  20.  
  21.  
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement