Package org.jboss.forge.roaster.model
Interface JavaDoc<O>
-
- All Known Subinterfaces:
JavaDocSource<O>
public interface JavaDoc<O> extends Internal, Origin<O>
AJavaDocrepresents Javadoc-style doc comment- Author:
- George Gastaldi
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetFullText()Returns the full text for thisJavaDoc, including tagsjava.util.Set<java.lang.String>getTagNames()Return the tag names for thisJavaDocjava.util.List<JavaDocTag>getTags()Returns a list ofJavaDocTagvalues for the given tag name (eg: @param) or an empty list if not foundjava.util.List<JavaDocTag>getTags(java.lang.String tagName)Returns a list ofJavaDocTagvalues for the given tag name (eg: @param) or an empty list if not foundjava.lang.StringgetText()Returns the text for thisJavaDoc, excluding tags-
Methods inherited from interface org.jboss.forge.roaster.Internal
getInternal
-
-
-
-
Method Detail
-
getText
java.lang.String getText()
Returns the text for thisJavaDoc, excluding tags
-
getFullText
java.lang.String getFullText()
Returns the full text for thisJavaDoc, including tags
-
getTagNames
java.util.Set<java.lang.String> getTagNames()
Return the tag names for thisJavaDoc
-
getTags
java.util.List<JavaDocTag> getTags(java.lang.String tagName)
Returns a list ofJavaDocTagvalues for the given tag name (eg: @param) or an empty list if not found
-
getTags
java.util.List<JavaDocTag> getTags()
Returns a list ofJavaDocTagvalues for the given tag name (eg: @param) or an empty list if not found
-
-