org.eclipse.jdt.internal.codeassist.complete
Interface CompletionOnJavadoc

All Known Implementing Classes:
CompletionOnJavadocAllocationExpression, CompletionOnJavadocFieldReference, CompletionOnJavadocMessageSend, CompletionOnJavadocParamNameReference, CompletionOnJavadocQualifiedTypeReference, CompletionOnJavadocSingleTypeReference, CompletionOnJavadocTag, CompletionOnJavadocTypeParamReference

public interface CompletionOnJavadoc


Field Summary
static int ALL_POSSIBLE_TAGS
           
static int BASE_TYPES
           
static int EXCEPTION
           
static int FORMAL_REFERENCE
           
static int JAVADOC
           
static int ONLY_INLINE_TAG
           
static int REPLACE_TAG
           
static int TEXT
           
 
Method Summary
 void addCompletionFlags(int flags)
           
 int getCompletionFlags()
          Get completion node flags.
 

Field Detail

JAVADOC

static final int JAVADOC
See Also:
Constant Field Values

EXCEPTION

static final int EXCEPTION
See Also:
Constant Field Values

TEXT

static final int TEXT
See Also:
Constant Field Values

BASE_TYPES

static final int BASE_TYPES
See Also:
Constant Field Values

ONLY_INLINE_TAG

static final int ONLY_INLINE_TAG
See Also:
Constant Field Values

REPLACE_TAG

static final int REPLACE_TAG
See Also:
Constant Field Values

FORMAL_REFERENCE

static final int FORMAL_REFERENCE
See Also:
Constant Field Values

ALL_POSSIBLE_TAGS

static final int ALL_POSSIBLE_TAGS
See Also:
Constant Field Values
Method Detail

getCompletionFlags

int getCompletionFlags()
Get completion node flags.

Returns:
int Flags of the javadoc completion node.

addCompletionFlags

void addCompletionFlags(int flags)
Parameters:
flags - The completionFlags to add.