NetBeans/Garten/src/garten/model/Pflanzengruppe.java
2019-06-23 14:54:19 +02:00

36 lines
637 B
Java

/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package garten.model;
/**
*
* @author Jan
*/
class Pflanzengruppe
{
private int alter;
private int pflanzentyp;
private int startlaenge;
Pflanze1 pfl1;
Pflanze2 pfl2;
Pflanze3 pfl3;
Pflanzengruppe(int pflanzenTyp,int alter, int startlaenge)
{
this.alter = alter;
this.pflanzentyp = pflanzenTyp;
this.startlaenge = startlaenge;
}
public void anzeigen()
{
}
public void beginnebepflanzung()
{
}
}