Exemplo n.º 1
0
  protected void setOutputRendering() {

    if (m_Alg != null) {
      final OutputRenderingSettingsDialog dialog = new OutputRenderingSettingsDialog(m_Alg);
      dialog.setVisible(true);
      final HashMap<String, Object> set = dialog.getSettings();
      if (set != null) {
        SextanteGUI.getDataRenderer().setRenderingForAlgorithm(m_Alg.getCommandLineName(), set);
        SextanteGUI.getDataRenderer().save();
      }
    }
  }