Spec-Zone .ru
спецификации, руководства, описания, API
|
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
This class holds the information from one run of javadoc. Particularly the packages, classes and options specified by the user..
Fields inherited from class java.io.Serializable |
serialVersionUID |
Method Summary | |
ClassDoc[] |
classes()
classes and interfaces to be documented. |
ClassDoc |
classNamed(java.lang.String qualifiedName)
Return a ClassDoc for the specified class/interface name |
java.lang.String[][] |
options()
Command line options. |
PackageDoc |
packageNamed(java.lang.String name)
Return a PackageDoc for the specified package name |
ClassDoc[] |
specifiedClasses()
classes and interfaces specified on the command line. |
PackageDoc[] |
specifiedPackages()
packages specified on the command line. |
Methods inherited from interface com.sun.javadoc.Doc |
commentText,
compareTo,
firstSentenceTags,
getRawCommentText,
inlineTags,
isClass,
isConstructor,
isError,
isException,
isField,
isIncluded,
isInterface,
isMethod,
isOrdinaryClass,
name,
seeTags,
setRawCommentText,
tags,
tags |
Methods inherited from interface com.sun.javadoc.DocErrorReporter |
printError,
printNotice,
printWarning |
Method Detail |
public java.lang.String[][] options()
For example, given: javadoc -foo this that -bar other ... This method will return: options()[0][0] = "-foo" options()[0][1] = "this" options()[0][2] = "that" options()[1][0] = "-bar" options()[1][1] = "other"
public PackageDoc[] specifiedPackages()
public ClassDoc[] specifiedClasses()
public ClassDoc[] classes()
public PackageDoc packageNamed(java.lang.String name)
name
- package namepublic ClassDoc classNamed(java.lang.String qualifiedName)
qualifiedName
- qualified class name
(i.e. includes package name).
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |