|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
abstract base class of all Doc classes. Doc item's are representations of java language constructs (class, package, method,...) which have comments and have been processed by this run of javadoc. All Doc items are unique, that is, they are == comparable.
Fields inherited from class java.io.Serializable |
serialVersionUID |
Method Summary | |
java.lang.String |
commentText()
Return the text of the comment for this doc item. |
int |
compareTo(java.lang.Object obj)
Compares this Object with the specified Object for order. |
Tag[] |
firstSentenceTags()
Return the first sentence of the comment as tags. |
java.lang.String |
getRawCommentText()
Return the full unprocessed text of the comment. |
Tag[] |
inlineTags()
Return comment as tags. |
boolean |
isClass()
Is this Doc item a class. |
boolean |
isConstructor()
Is this Doc item a constructor? False until overridden. |
boolean |
isError()
Is this Doc item a error class? False until overridden. |
boolean |
isException()
Is this Doc item a exception class? False until overridden. |
boolean |
isField()
Is this Doc item a field? False until overridden. |
boolean |
isIncluded()
return true if this Doc is include in the active set. |
boolean |
isInterface()
Is this Doc item a interface? False until overridden. |
boolean |
isMethod()
Is this Doc item a simple method (i.e. |
boolean |
isOrdinaryClass()
Is this Doc item a ordinary class (i.e. |
java.lang.String |
name()
Returns the name of this Doc item. |
SeeTag[] |
seeTags()
Return the see also tags in this Doc item. |
void |
setRawCommentText(java.lang.String rawDocumentation)
Set the full unprocessed text of the comment. |
Tag[] |
tags()
Return all tags in this Doc item. |
Tag[] |
tags(java.lang.String tagname)
Return tags of the specified kind in this Doc item. |
Method Detail |
public java.lang.String commentText()
public Tag[] tags()
public Tag[] tags(java.lang.String tagname)
tagname
- name of the tag kind to search for.public SeeTag[] seeTags()
public Tag[] inlineTags()
Tag
of kind "Text".
Inline tags are represented as a SeeTag
of kind "link".Tag
s representing the commentpublic Tag[] firstSentenceTags()
Tag
of kind "Text".
Inline tags are represented as a SeeTag
of kind "link".
First sentence is determined by
java.text.BreakIterator#getSentenceInstance(Locale)
.Tag
s representing the
first sentence of the commentpublic java.lang.String getRawCommentText()
public void setRawCommentText(java.lang.String rawDocumentation)
public java.lang.String name()
public int compareTo(java.lang.Object obj)
Included so that Doc item are java.lang.Comparable.
o
- the Object
to be compared.public boolean isField()
public boolean isMethod()
public boolean isConstructor()
public boolean isInterface()
public boolean isException()
public boolean isError()
public boolean isOrdinaryClass()
public boolean isClass()
public boolean isIncluded()
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |