Package de.kruis.padoclet.util

Examples of de.kruis.padoclet.util.AbstractOption


  public static boolean validOptions(String[][] options,
      DocErrorReporter reporter) throws java.io.IOException {
    boolean showHelp = false;

    Option.initOptions(options);
    AbstractOption helpOption = Option.get("Help");
    if (helpOption != null && helpOption.isSet()) {
      showHelp = true;
    }
    if (showHelp) {
      reporter.printNotice(Option.LF + RefCheckDoclet.class.getName()
          + " options:" + Option.LF + Option.getDescriptions());
View Full Code Here


     * @see Doclet#validOptions(java.lang.String[][], com.sun.javadoc.DocErrorReporter)
     */
    protected static boolean validOptionsHelper(String[][] options,
            DocErrorReporter reporter, boolean showHelp, String className) throws java.io.IOException {
      Option.initOptions(options);
      AbstractOption helpOption = Option.get("Help");
      if (helpOption != null && helpOption.isSet()) {
        showHelp = true;
      }
        if (!((Boolean) delegateDocletInvoke("validOptions", new Object[] {filterOptions(options),reporter})).booleanValue()) {
          showHelp = true;
        }
View Full Code Here

TOP

Related Classes of de.kruis.padoclet.util.AbstractOption

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.