Kompositum - Anwendung

so ist es richtig:

interface Geo {
    Box bounds ();
    Geo [] teile ();
    void draw ();
}
class Kreis implements Geo { .. }
class Neben implements Geo {
    Neben (Geo links, Geo Rechts) { .. }
}



Johannes Waldmann 2011-07-07