/* * 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; import java.util.ArrayList; /** * * @author Jan */ public interface Pflanze extends Position { Position eigenePosition = null; void setPosition(); public ArrayList getPoints(); public void setAlgorithm(); }