1 11 package org.eclipse.jdt.internal.codeassist.complete; 12 13 public interface CompletionOnJavadoc { 14 15 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 30 public int getCompletionFlags(); 31 32 35 public void addCompletionFlags(int flags); 36 37 } 38 | Popular Tags |