Package net.sf.gluebooster.java.booster.essentials.meta

Examples of net.sf.gluebooster.java.booster.essentials.meta.ObjectDescription.checkValue()


      throw new ParseException(ex.getLocalizedMessage()
          + "\nOptions were " + Arrays.asList(parameters) + "\n"
          + getOptionsHelp());
    }

    if (!configuration.checkValue()) {
      throw new ParseException(configuration.toString());
    }

    return configuration;
  }
View Full Code Here


    String[] parameters = (String[]) parameterArray;
    ObjectFactory exec = getExecutor();
    Object parameter;
    if (exec instanceof Configurable) {
      ObjectDescription optionDescription = getCommandFromParameters((String[]) parameters);
      if (!optionDescription.checkValue()) {
        throw new InvalidParameterException(
            optionDescription.toString());
      }
      parameter = optionDescription;
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.