示例#1
0
 /** Export the selected param infos to the plugin manager */
 public void exportSelectedToPlugin() {
   ParamDefaultsTable table = getCurrentTable();
   List selected = table.getSelectedParamInfoList();
   if (selected.size() == 0) {
     LogUtil.userMessage("No rows selected");
     return;
   }
   getIdv().getPluginManager().addObject(selected);
 }