Package | Description |
---|---|
com.nomagic.reportwizard.tools.doc | |
com.nomagic.reportwizard.tools.doc.javadoc |
Modifier and Type | Method and Description |
---|---|
Tag |
Document.get(java.lang.String tagName)
Return tag of specified kind of this document item.
|
Modifier and Type | Method and Description |
---|---|
java.util.Collection<Tag> |
Tag.getInlineTags()
Return a collection of tags.
|
java.util.Collection<Tag> |
Document.getTags()
Return all tags in this document item.
|
java.util.Collection<Tag> |
Document.getTags(java.lang.String tagName)
Return tags of specified kind of this document item.
|
Modifier and Type | Class and Description |
---|---|
class |
CodeTag
Represents a @code documentation tag.
|
class |
LinkPlainTag
Represents a @linkplain documentation tag.
|
class |
LinkTag
Represents a @link documentation tag.
|
class |
LiteralTag
Represents a @literal documentation tag.
|
class |
ParamTag
Represents a @param documentation tag.
|
class |
SeeTag
Represents a user-defined cross-reference to related documentation.
|
class |
SerialFieldTag
Represents a @serialField tag.
|
class |
TagImpl
Default tag implementation.
|
class |
TextTag
Represents a Text documentation.
|
class |
ThrowsTag
Represents a @throws or @exception documentation tag.
|
class |
ValueTag
Represents a @value documentation tag.
|
Modifier and Type | Method and Description |
---|---|
static Tag |
TagCreator.create(java.lang.String tagName,
java.lang.String text)
Create a tag from tagName.
|
static Tag |
TagCreator.createInlineTag(java.lang.String tagName,
java.lang.String text)
Create a tag from tagName.
|
Tag |
DocumentImpl.get(java.lang.String tagName)
Return tag of specified kind of this document item.
|
Modifier and Type | Method and Description |
---|---|
java.util.Collection<Tag> |
DocumentImpl.getFirstSentenceTags()
Return the first sentence of the comment as a collection of tags.
|
java.util.Collection<Tag> |
TagImpl.getInlineTags()
Return a collection of tags.
|
java.util.Collection<Tag> |
DocumentImpl.getInlineTags()
Return comment as a collection of tags.
|
java.util.Collection<Tag> |
DocumentImpl.getTags()
Return all tags in this document item.
|
java.util.Collection<Tag> |
DocumentImpl.getTags(java.lang.String tagName)
Return tags of specified kind of this document item.
|