497a498 > 498a500,510 > * Does this instance of javadoc work around command line length limit by > * using an external file for the sourcefiles. > * > * @return true if an external file is to be used. > */ > public boolean getUseExternalFile() { > return useExternalFile; > } > > > /** 508a521 > 509a523,533 > * Gets whether default exclusions should be used or not. > * > * @return true when default exclusions should be used, > false when they shouldn't be used. > */ > public boolean getDefaultexcludes() { > return this.useDefaultExcludes; > } > > > /** 552a577 > 553a579,588 > * Returns the path where javadoc will find source files > * > * @return a Path instance containing the various source directories. > */ > public Path getSourcepath() { > return this.sourcePath; > } > > > /** 585a621 > 586a623,631 > * Get the directory where the Javadoc output will be generated. > * > * @return the destination directory. > */ > public File getDestDir() { > return this.destDir; > } > > /** 609a655 > 610a657,666 > * Get the source files > * > * @return a Vector of SourceFile instances. > */ > public Vector getSourceFiles() { > return sourceFiles; > } > > > /** 627a684 > 628a686,697 > * Get the package names to be processed. > * > * @return a Vector of packages Javadoc.PackageName instances. > * > * @see #addPackage for wildcard information. > */ > public Vector getPackagenames(String packages) { > return this.packageNames; > } > > > /** 655a725 > 656a727,736 > * Get the package names to be excluded. > * > * @return a Vector of packages Javadoc.PackageName instances. > */ > public Vector getExcludePackageNames(String packages) { > return this.excludePackageNames; > } > > > /** 742a823 > 743a825,836 > * Get the class that starts the doclet used in generating the > * documentation. > * > * @return the name of the doclet class. > */ > public String getDoclet() { > return this.doclet.getName(); > } > > > > /** 756a850,858 > * Get the classpath used to find the doclet class. > * > * @return the doclet classpath. > */ > public Path getDocletPath() { > return this.doclet.getPath(); > } > > /** 824a927 > 825a929,939 > * Get the classpath to be used for this javadoc run. > * > * @return an Ant Path object containing the compilation > * classpath. > */ > public Path getClasspath() { > return this.classpath; > } > > > /** 947a1062,1070 > * Include the version tag in the generated documentation. > * > * @return true if the version tag should be included. > */ > public boolean getVersion() { > return this.version; > } > > /** 966a1090,1099 > * Include the author tag in the generated documentation. > * > * @return true if the author tag should be included. > */ > public boolean getAuthor() { > return this.author; > } > > > /** 995a1129 > 996a1131,1139 > * Get the title of the generated overview page. > * > * @return the Document title. > */ > public Html getDoctitle() { > return this.doctitle; > } > > /** 1017a1161 > 1018a1163,1172 > * Get the header text to be placed at the top of each output file. > * > * @return the header text. > */ > public Html getHeader() { > return this.header; > } > > > /** 1040a1195,1203 > * Get the footer text to be placed at the bottom of each output file. > * > * @param footer the footer text. > */ > public Html getFooter() { > return this.footer; > } > > /** 1062a1226,1234 > * Get the text to be placed at the bottom of each output file. > * > * @return the bottom text. > */ > public Html getBottom() { > return this.bottom; > } > > /** 1110a1283,1289 > * Group specified packages together in overview page. > */ > public String getGroup() { > return this.group; > } > > /** 1119a1299,1308 > * Get links to be added to javadoc output. > * > * @return a Vector of LinkArgument instances. > */ > public Vector getLinks() > { > return this.links; > } > > /** 1520a1710,1718 > * Should the build process fail if javadoc fails (as indicated by > * a non zero return code)? > * > */ > public boolean getFailonerror() { > return this.failOnError; > } > > /** 1534a1733,1743 > * Enables the -source switch, will be ignored if javadoc is not > * the 1.4 version or a different doclet than the standard doclet > * is used. > * > * @since Ant 1.5 > */ > public String getSource() { > return this.source; > } > > /** 1546a1756,1764 > * Get the current pakcageset. > * > * @return a Vector of DirSet instances. > */ > public Vector getPackagesets() { > return this.packageSets; > } > > /** 1558a1777,1787 > > > /** > * Get the current filesets. > * > * @return a Vector of FileSet instances. > */ > public Vector getFilesets() { > return fileSets; > } >