/**
   * Create and show a new maintenance sheet that will allow the user to create a new driver that is
   * a copy of the passed one.
   *
   * @return The new maintenance sheet.
   * @throws IllegalArgumentException Thrown if a <TT>null</TT> <TT>ISQLDriver</TT> passed.
   */
  public void showCopyDriverInternalFrame(final ISQLDriver driver) {
    if (driver == null) {
      throw new IllegalArgumentException("ISQLDriver == null");
    }

    _driverWinFactory.showCopySheet(driver).moveToFront();
  }
 /** Create and show a new maintenance window to allow the user to create a new driver. */
 public void showNewDriverInternalFrame() {
   _driverWinFactory.getCreateSheet().moveToFront();
 }