You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Pflanzengruppe.java 654B

12345678910111213141516171819202122232425262728293031323334353637
  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 garten.model;
  7. /**
  8. *
  9. * @author Jan
  10. */
  11. class Pflanzengruppe
  12. {
  13. private int alter;
  14. private int pflanzentyp;
  15. private int anzahlPflanzen = 1;
  16. //Pflanze[] Pflanzengruppe = new Pflanze[anzahlPflanzen];
  17. Pflanzengruppe(int Alter,int PflanzenTyp,int AnzahlPflanzen)
  18. {
  19. alter = Alter;
  20. pflanzentyp = PflanzenTyp;
  21. anzahlPflanzen = AnzahlPflanzen;
  22. }
  23. public void anzeigen()
  24. {
  25. }
  26. public void beginnebepflanzung()
  27. {
  28. }
  29. }