Package org.jboss.forge.roaster.model
Interface JavaDoc<O>
- All Known Subinterfaces:
JavaDocSource<O>
A
JavaDoc represents Javadoc-style doc comment- Author:
- George Gastaldi
-
Method Summary
Modifier and TypeMethodDescriptionReturns the full text for thisJavaDoc, including tagsReturn the tag names for thisJavaDocgetTags()Returns a list ofJavaDocTagvalues for the given tag name (eg: @param) or an empty list if not foundReturns a list ofJavaDocTagvalues for the given tag name (eg: @param) or an empty list if not foundgetText()Returns the text for thisJavaDoc, excluding tagsMethods inherited from interface org.jboss.forge.roaster.Internal
getInternal
-
Method Details
-
getText
String getText()Returns the text for thisJavaDoc, excluding tags -
getFullText
String getFullText()Returns the full text for thisJavaDoc, including tags -
getTagNames
Return the tag names for thisJavaDoc -
getTags
Returns a list ofJavaDocTagvalues for the given tag name (eg: @param) or an empty list if not found -
getTags
List<JavaDocTag> getTags()Returns a list ofJavaDocTagvalues for the given tag name (eg: @param) or an empty list if not found
-