예제 #1
0
  /** Override the base class to call stop() on the referenced model. */
  public void stop() {
    if (_model instanceof Executable) {
      ((Executable) _model).stop();
    }

    super.stop();
  }