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 StringgetFullText()Returns the full text for thisJavaDoc, including tagsSet<String>getTagNames()Return the tag names for thisJavaDocList<JavaDocTag>getTags()Returns a list ofJavaDocTagvalues for the given tag name (eg: @param) or an empty list if not foundList<JavaDocTag>getTags(String tagName)Returns a list ofJavaDocTagvalues for the given tag name (eg: @param) or an empty list if not foundStringgetText()Returns the text for thisJavaDoc, excluding tags-
Methods inherited from interface org.jboss.forge.roaster.Internal
getInternal
-
-
-
-
Method Detail
-
getTags
List<JavaDocTag> getTags(String tagName)
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
-
-