|
|
|
|
|
|
|
|
|
|
|
/* |
|
|
|
|
|
* 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 |
|
|
|
|
|
*/ |
|
|
|
|
|
public class Gaertner3 |
|
|
|
|
|
{ |
|
|
|
|
|
private static int tempx, |
|
|
|
|
|
tempy, |
|
|
|
|
|
alter, |
|
|
|
|
|
startlaenge; |
|
|
|
|
|
|
|
|
|
|
|
public Gaertner3(int tempx,int tempy,int alter,int startlaenge) |
|
|
|
|
|
{ |
|
|
|
|
|
this.tempx = tempx; |
|
|
|
|
|
this.tempy = tempy; |
|
|
|
|
|
this.alter = alter; |
|
|
|
|
|
this.startlaenge = startlaenge; |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public Pflanze pflanzen() |
|
|
|
|
|
{ |
|
|
|
|
|
return new Pflanze3(tempx, tempy, alter,startlaenge); |
|
|
|
|
|
} |
|
|
|
|
|
} |