KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jdt > internal > codeassist > complete > CompletionOnJavadoc


1 /*******************************************************************************
2  * Copyright (c) 2000, 2007 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.jdt.internal.codeassist.complete;
12
13 public interface CompletionOnJavadoc {
14
15     // Bit pattern for javadoc completion flags
16
int JAVADOC = 0x0001;
17     int EXCEPTION = 0x0002;
18     int TEXT = 0x0004;
19     int BASE_TYPES = 0x0008;
20     int ONLY_INLINE_TAG = 0x0010;
21     int REPLACE_TAG = 0x0020;
22     int FORMAL_REFERENCE = 0x0040;
23     int ALL_POSSIBLE_TAGS = 0x0080;
24
25     /**
26      * Get completion node flags.
27      *
28      * @return int Flags of the javadoc completion node.
29      */

30     public int getCompletionFlags();
31
32     /**
33      * @param flags The completionFlags to add.
34      */

35     public void addCompletionFlags(int flags);
36
37 }
38
Popular Tags