2 * To change this template, choose Tools | Templates
3 * and open the template in the editor.
7 import lib
.teletubbies
.*;
13 public class TeletubbyFamily
{
15 private Teletubby father
;
16 private Teletubby mother
;
17 private Noo_Noo family_noo_noo
;
19 public TeletubbyFamily(Teletubby dad
, Teletubby mum
) {
22 this.family_noo_noo
= new Noo_Noo(100, 100);
25 public TeletubbyFamily(Teletubby mum
, Teletubby dad
, Noo_Noo noo_noo
) {
29 public Teletubby
getFather() {
33 public void set_noo_noo(Noo_Noo family_noo_noo
) {
34 this.family_noo_noo
= family_noo_noo
;
37 public void setFather(Teletubby father
) {
41 public Noo_Noo
get_noo_noo() {
42 return family_noo_noo
;
45 public Teletubby
getMother() {
49 public void setMother(Teletubby mother
) {