Lines Matching defs:doclet

43 import jdk.javadoc.doclet.Doclet;
44 import jdk.javadoc.doclet.DocletEnvironment;
45 import jdk.javadoc.doclet.Reporter;
68 * all user options which are supported by the 1.1 doclet and the standard
69 * doclet.
82 * The doclet that created this configuration.
84 public final Doclet doclet;
104 public static final String DEFAULT_BUILDER_XML = "resources/doclet.xml";
168 * The doclet environment.
183 * Destination directory name, in which doclet will generate the entire
189 * Destination directory name, in which doclet will copy the doc-files to.
303 * Return the build date for the doclet.
349 * Constructs the configurations needed by the doclet.
351 * @param doclet the doclet that created this configuration
353 public BaseConfiguration(Doclet doclet) {
354 this.doclet = doclet;
384 * Return the builder factory for this doclet.
386 * @return the builder factory for this doclet.
436 // Build the modules structure used by the doclet
625 getMessages().warning("doclet.sourcetab_warning");
731 reporter.print(NOTE, getText("doclet.dest_dir_create", destDirName));
735 "doclet.destination_directory_not_directory_0",
739 "doclet.destination_directory_not_writable_0",
781 messages.error("doclet.Error_invalid_custom_tag_argument", args.get(1));
889 reporter.print(ERROR, getText("doclet.Encoding_not_supported", docencoding));
950 * Convenience method to obtain a resource from the doclet's
962 * Convenience method to obtain a resource from the doclet's
975 * Convenience method to obtain a resource from the doclet's
984 * Convenience method to obtain a resource from the doclet's
994 * Convenience method to obtain a resource from the doclet's
1032 * Return the doclet specific instance of a writer factory.
1034 * @return the {@link WriterFactory} for the doclet.
1093 keyBase = "doclet.usage." + names[0].toLowerCase().replaceAll("^-+", "");