Пример #1
0
  /** Method to check to see what kind of imports are supported by the mapper script */
  private void loadMapperScript() {
    String fileName = mapperScriptTextField.getText();
    File file = new File(fileName);

    if (file.exists()) {
      mapperScript = FileManager.readTextData(file);
      indicateSupportedRecords(null);
      scriptFile = file;
    }
  }