/** Do the work after everything is specified. */
  @Override
  public boolean performFinish() {
    modelFile = newFileCreationPage.createNewFile();
    if (modelFile == null) {
      return false;
    }

    BasicNewResourceWizard.selectAndReveal(modelFile, workbench.getActiveWorkbenchWindow());

    return true;
  }