Package net.sf.mzmine.parameters.parametertypes

Examples of net.sf.mzmine.parameters.parametertypes.DoubleParameter$MinMaxVerifier


      UserParameter parameter = null;

      if (radiobuttonNumerical.isSelected()) {

        parameter = new DoubleParameter(paramName, null);
      }

      if (radiobuttonFreeText.isSelected()) {
        parameter = new StringParameter(paramName, null);
      }
View Full Code Here


            isAllNumeric = false;
            break;
          }
        }
        if (isAllNumeric) {
          parameters.add(new DoubleParameter(name, null));
          continue;
        }

        // Test for "set of values"
        ArrayList<String> uniqueValues = new ArrayList<String>();
View Full Code Here

          .getElementName());
      String type = attrs.getValue(UserParameterElementName_2_3.TYPE
          .getElementName());

      if (type.equals(DoubleParameter.class.getSimpleName())) {
        currentParameter = new DoubleParameter(name, null);
      } else if (type.equals(StringParameter.class.getSimpleName())) {
        currentParameter = new StringParameter(name, null);
      } else if (type.equals(ComboParameter.class.getSimpleName())) {
        currentParameter = new ComboParameter<String>(name, null,
            new String[0]);
View Full Code Here

          .getElementName());
      String type = attrs.getValue(UserParameterElementName_2_5.TYPE
          .getElementName());

      if (type.equals(DoubleParameter.class.getSimpleName())) {
        currentParameter = new DoubleParameter(name, null);
      } else if (type.equals(StringParameter.class.getSimpleName())) {
        currentParameter = new StringParameter(name, null);
      } else if (type.equals(ComboParameter.class.getSimpleName())) {
        currentParameter = new ComboParameter<String>(name, null,
            new String[0]);
View Full Code Here

      String type = attrs
          .getValue(UserParameterElementName_2_5_FiehnlabFork.TYPE
              .getElementName());

      if (type.equals(DoubleParameter.class.getSimpleName())) {
        currentParameter = new DoubleParameter(name, null);
      } else if (type.equals(StringParameter.class.getSimpleName())) {
        currentParameter = new StringParameter(name, null);
      } else if (type.equals(ComboParameter.class.getSimpleName())) {
        currentParameter = new ComboParameter<String>(name, null,
            new String[0]);
View Full Code Here

TOP

Related Classes of net.sf.mzmine.parameters.parametertypes.DoubleParameter$MinMaxVerifier

Copyright © 2018 www.massapicom. 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.