Yurttas/PL/OOL/Java/F/09/02/00/AnnualGarden.java

From ZCubes Wiki
Revision as of 16:20, 7 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="java" line start="1" enclose="div">public class AnnualGarden implements Garden { public Plant getShade() { return new Plant("Coleus"); } pub...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
 1public class AnnualGarden implements Garden {
 2
 3  public Plant getShade() {
 4    return new Plant("Coleus");
 5  }
 6
 7  public Plant getCenter() {
 8    return new Plant("Marigold");
 9  }
10
11  public Plant getBorder() {
12    return new Plant("Alyssum");
13  }
14
15}