Interface JavaDocSource<O>
-
public interface JavaDocSource<O> extends JavaDoc<O>
- Author:
- George Gastaldi
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JavaDocSource<O>addTagValue(String tagName, String tagValue)Add a tag value for thisJavaDocSourceJavaDocSource<O>addTagValue(JavaDocTag tag)Add a tag value given an existingJavaDocTagJavaDocSource<O>removeAllTags()Remove all tagsJavaDocSource<O>removeTag(JavaDocTag tag)Removes the givenJavaDocTagJavaDocSource<O>removeTags(String tagName)Removes the given tagName from thisJavaDocJavaDocSource<O>setFullText(String text)Sets the wholeJavaDoctext, including tagsJavaDocSource<O>setText(String text)Sets the text for thisJavaDoc(without any tags)-
Methods inherited from interface org.jboss.forge.roaster.Internal
getInternal
-
Methods inherited from interface org.jboss.forge.roaster.model.JavaDoc
getFullText, getTagNames, getTags, getTags, getText
-
-
-
-
Method Detail
-
setFullText
JavaDocSource<O> setFullText(String text)
Sets the wholeJavaDoctext, including tags
-
setText
JavaDocSource<O> setText(String text)
Sets the text for thisJavaDoc(without any tags)
-
addTagValue
JavaDocSource<O> addTagValue(String tagName, String tagValue)
Add a tag value for thisJavaDocSource
-
addTagValue
JavaDocSource<O> addTagValue(JavaDocTag tag)
Add a tag value given an existingJavaDocTag
-
removeTags
JavaDocSource<O> removeTags(String tagName)
Removes the given tagName from thisJavaDoc
-
removeTag
JavaDocSource<O> removeTag(JavaDocTag tag)
Removes the givenJavaDocTag
-
removeAllTags
JavaDocSource<O> removeAllTags()
Remove all tags
-
-