| Package | Description | 
|---|---|
| oracle.javatools.parser.java.v2 | 
 The parser API. 
 | 
| oracle.javatools.parser.java.v2.model | 
 The parser model API. 
 | 
| oracle.javatools.parser.java.v2.model.doc | 
 The parser model API for doc elements. 
 | 
| oracle.javatools.parser.java.v2.util | 
 Various utilities for use with the parser. 
 | 
| oracle.jdeveloper.java.util | 
 Public utilities for use with the java model, including the parser. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
SourceDocComment | 
SourceFactory.createDocComment()
Creates a doc comment, empty. 
 | 
SourceDocComment | 
SourceFactory.createDocComment(SourceDocDescription description)
Creates a doc comment with the given description. 
 | 
SourceDocComment | 
SourceFactory.createDocComment(SourceDocDescription description,
                SourceDocBlockTag tag)
Creates a doc comment with the given description and block tags. 
 | 
abstract SourceDocComment | 
SourceFactory.createDocComment(SourceDocDescription description,
                SourceDocBlockTag[] tags)
Creates a doc comment with the given description and block tags. 
 | 
SourceDocComment | 
SourceFactory.createDocComment(java.lang.String text)
 | 
abstract SourceDocComment | 
SourceFactory.createDocCommentFromText(java.lang.String text)
Attempts to create a doc comment with the given text. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
SourceDocComment | 
SourceMember.getDocComment()
Gets the javadoc comment symbol. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
SourceMember.setDocComment(SourceDocComment comment)
Attempts to set the javadoc comment symbol. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
SourceDocComment | 
SourceDocElement.getOwningDocComment()
Gets the doc comment which owns this doc element. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
SourceVisitor.whenEnterDocComment(SourceDocComment sourceDocComment)  | 
void | 
SourceVisitor.whenExitDocComment(SourceDocComment sourceDocComment)  | 
| Modifier and Type | Method and Description | 
|---|---|
static SourceDocComment | 
SourceUtils.addDocComment(SourceMember member,
             java.lang.String descText)
Sets the Javadoc comment for the given member (class, method, field, ...). 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static SourceDocTag | 
SourceUtils.addDocTag(SourceDocComment comment,
         java.lang.String tagNameText,
         java.lang.String tagText)
Adds a doc tag to the given doc comment 
 |