Examples of checkAllParameterValues()


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

        ((RawDataFilesMultiChoiceParameter) p).setChoices(dataFiles);
    }

    // Check if the parameter settings are valid
    ArrayList<String> messages = new ArrayList<String>();
    boolean paramsCheck = batchStepParameters
        .checkAllParameterValues(messages);
    if (!paramsCheck) {
      setStatus(TaskStatus.ERROR);
      errorMessage = "Invalid parameter settings for module " + method
          + ": " + Arrays.toString(messages.toArray());
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.