Package spoon.javadoc.internal
Class Javadoc
java.lang.Object
spoon.javadoc.internal.Javadoc
- All Implemented Interfaces:
Serializable
@Deprecated(forRemoval=true,
since="11.0.0")
public class Javadoc
extends Object
implements Serializable
Deprecated, for removal: This API element is subject to removal in a future version.
Use the new javadoc parser submodule, see Javadoc Parser.
The structured content of a single Javadoc comment.
It is composed by a description and a list of block tags.
An example would be the text contained in this very Javadoc comment. At the moment of this
writing this comment does not contain any block tags (such as @see AnotherClass)
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionJavadoc()Deprecated, for removal: This API element is subject to removal in a future version.Javadoc(JavadocDescription description) Deprecated, for removal: This API element is subject to removal in a future version. -
Method Summary
Modifier and TypeMethodDescriptionaddBlockTag(String tagName) Deprecated, for removal: This API element is subject to removal in a future version.addBlockTag(String tagName, String parameter, String content) Deprecated, for removal: This API element is subject to removal in a future version.For tags like "@return good things" where tagName is "return", and the rest is content.addBlockTag(JavadocBlockTag blockTag) Deprecated, for removal: This API element is subject to removal in a future version.booleanDeprecated, for removal: This API element is subject to removal in a future version.Deprecated, for removal: This API element is subject to removal in a future version.Deprecated, for removal: This API element is subject to removal in a future version.inthashCode()Deprecated, for removal: This API element is subject to removal in a future version.static JavadocDeprecated, for removal: This API element is subject to removal in a future version.parses the Javadoc content (description + tags)static JavadocDescriptionDeprecated, for removal: This API element is subject to removal in a future version.parse the description part (before tags) of a JavadoctoString()Deprecated, for removal: This API element is subject to removal in a future version.toText()Deprecated, for removal: This API element is subject to removal in a future version.Return the text content of the document.
-
Constructor Details
-
Javadoc
public Javadoc()Deprecated, for removal: This API element is subject to removal in a future version. -
Javadoc
Deprecated, for removal: This API element is subject to removal in a future version.
-
-
Method Details
-
addBlockTag
Deprecated, for removal: This API element is subject to removal in a future version. -
addBlockTag
Deprecated, for removal: This API element is subject to removal in a future version.For tags like "@return good things" where tagName is "return", and the rest is content. -
addBlockTag
Deprecated, for removal: This API element is subject to removal in a future version. -
toText
Deprecated, for removal: This API element is subject to removal in a future version.Return the text content of the document. It does not containing trailing spaces and asterisks at the start of the line. -
getDescription
Deprecated, for removal: This API element is subject to removal in a future version. -
getBlockTags
Deprecated, for removal: This API element is subject to removal in a future version.- Returns:
- the current List of associated JavadocBlockTags
-
equals
Deprecated, for removal: This API element is subject to removal in a future version. -
hashCode
public int hashCode()Deprecated, for removal: This API element is subject to removal in a future version. -
toString
Deprecated, for removal: This API element is subject to removal in a future version. -
parseText
Deprecated, for removal: This API element is subject to removal in a future version.parse the description part (before tags) of a Javadoc -
parse
Deprecated, for removal: This API element is subject to removal in a future version.parses the Javadoc content (description + tags)
-