Package com.sun.codemodel
Class JDocComment
- All Implemented Interfaces:
JGenerable,Serializable,Cloneable,Iterable<Object>,Collection<Object>,List<Object>,RandomAccess
JavaDoc comment.
A javadoc comment consists of multiple parts. There's the main part (that comes the first in in the comment section), then the parameter parts (@param), the return part (@return), and the throws parts (@throws). TODO: it would be nice if we have JComment class and we can derive this class from there.
- See Also:
-
Field Summary
Fields inherited from class java.util.AbstractList
modCount -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionadd an @deprecated tag to the javadoc, with the associated message.Append a text to an @param tag.Append a text to a @param tag to the javadocAppends a text to @return tag.add an @throws tag to the javadocadd an @throws tag to the javadocaddXdoclet(String name) add an xdoclet.addXdoclet(String name, String attribute, String value) add an xdoclet.addXdoclet(String name, Map<String, String> attributes) add an xdoclet.Appends a new value.voidMethods inherited from class com.sun.codemodel.JCommentPart
add, formatMethods inherited from class java.util.ArrayList
add, addAll, addAll, clear, clone, contains, ensureCapacity, equals, forEach, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeIf, removeRange, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray, trimToSizeMethods inherited from class java.util.AbstractCollection
containsAll, toStringMethods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.Collection
parallelStream, stream, toArrayMethods inherited from interface java.util.List
containsAll
-
Constructor Details
-
JDocComment
-
-
Method Details
-
append
Description copied from class:JCommentPartAppends a new value. If the value isJTypeit will be printed as a @link tag. Otherwise it will be converted to String viaObject.toString().- Overrides:
appendin classJCommentPart
-
addParam
Append a text to a @param tag to the javadoc -
addParam
Append a text to an @param tag. -
addThrows
add an @throws tag to the javadoc -
addThrows
add an @throws tag to the javadoc -
addReturn
Appends a text to @return tag. -
addDeprecated
add an @deprecated tag to the javadoc, with the associated message. -
addXdoclet
add an xdoclet. -
addXdoclet
add an xdoclet. -
addXdoclet
add an xdoclet. -
generate
- Specified by:
generatein interfaceJGenerable
-