Examples of saveValuesToXML()


Examples of net.sf.mzmine.parameters.ParameterSet.saveValuesToXML()

      xmlElement.appendChild(stepElement);

      // Save parameters.
      final ParameterSet parameters = step.getParameterSet();
      if (parameters != null) {
        parameters.saveValuesToXML(stepElement);
      }
    }
  }
}
View Full Code Here

Examples of net.sf.mzmine.parameters.ParameterSet.saveValuesToXML()

    for (MZmineProcessingStep item : modulesWithParams) {
      Element newElement = parentDocument.createElement("module");
      newElement.setAttribute("name", item.getModule().getName());
      ParameterSet moduleParameters = item.getParameterSet();
      if (moduleParameters != null)
        moduleParameters.saveValuesToXML(newElement);
      xmlElement.appendChild(newElement);
    }
  }

  @Override
View Full Code Here

Examples of net.sf.mzmine.parameters.ParameterSet.saveValuesToXML()

            .createElement("parameters");
        moduleElement.appendChild(paramElement);

        ParameterSet moduleParameters = getModuleParameters(module
            .getClass());
        moduleParameters.saveValuesToXML(paramElement);

      }

      TransformerFactory transfac = TransformerFactory.newInstance();
      Transformer transformer = transfac.newTransformer();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.