Ejemplo n.º 1
0
 public ElevatorControl()
 {
     this.window = null;
     this.cabinView = new CabinView();
     this.elevatorView = new ElevatorView();
     this.toolView = new ToolBarView();
     this.abstraction = new ElevatorAbstract();
     this.animationControl = new AnimationControl();
 }
Ejemplo n.º 2
0
 public void init(MainWindow frame)
 {
     this.window = frame;
     this.window.init(this);
     this.cabinView.init(this);
     this.elevatorView.init(this);
     this.toolView.init(this);
     this.abstraction.init(this);
     this.animationControl.init(this);
 }