Package org.apache.oodt.cas.cli.option

Examples of org.apache.oodt.cas.cli.option.SimpleCmdLineOption


      return createSimpleOption(longName, longName, required);
   }

   public static SimpleCmdLineOption createSimpleOption(String shortName,
         String longName, boolean required) {
      SimpleCmdLineOption option = new SimpleCmdLineOption();
      option.setShortOption(shortName);
      option.setLongOption(longName);
      option.setRequired(required);
      return option;
   }
View Full Code Here


      return createSimpleOption(longName, longName, rule);
   }

   public static SimpleCmdLineOption createSimpleOption(String shortName,
         String longName, RequirementRule rule) {
      SimpleCmdLineOption option = new SimpleCmdLineOption();
      option.setShortOption(shortName);
      option.setLongOption(longName);
      option.setRequirementRules(Collections.singletonList(rule));
      return option;
   }
View Full Code Here

TOP

Related Classes of org.apache.oodt.cas.cli.option.SimpleCmdLineOption

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.