/** Copy information from the meta-data input to the dialog fields. */
  public void getData() {
    if (input.getPrefix() != null) {
      wPrefix.setText(input.getPrefix());
    }
    if (input.getDirectory() != null) {
      wSortDir.setText(input.getDirectory());
    }
    wCache.setText("" + input.getCacheSize());
    if (input.getLookupStepname() != null) {
      wMainStep.setText(input.getLookupStepname());
    }

    wStepname.selectAll();
    wStepname.setFocus();
  }