1 11 package org.eclipse.jdt.core.search; 12 13 import org.eclipse.jdt.internal.core.search.processing.*; 14 15 24 public interface IJavaSearchConstants { 25 26 30 int UNKNOWN = -1; 31 32 33 34 38 int TYPE= 0; 39 40 43 int METHOD= 1; 44 45 48 int PACKAGE= 2; 49 50 53 int CONSTRUCTOR= 3; 54 55 58 int FIELD= 4; 59 60 64 int CLASS= 5; 65 66 70 int INTERFACE= 6; 71 72 77 int ENUM= 7; 78 79 84 int ANNOTATION_TYPE= 8; 85 86 91 int CLASS_AND_ENUM= 9; 92 93 98 int CLASS_AND_INTERFACE= 10; 99 100 105 int INTERFACE_AND_ANNOTATION= 11; 106 107 108 109 114 int DECLARATIONS= 0; 115 116 123 int IMPLEMENTORS= 1; 124 125 132 int REFERENCES= 2; 133 134 140 int ALL_OCCURRENCES= 3; 141 142 149 int READ_ACCESSES = 4; 150 151 158 int WRITE_ACCESSES = 5; 159 160 165 int IGNORE_DECLARING_TYPE = 0x10; 166 167 177 int IGNORE_RETURN_TYPE = 0x20; 178 179 180 181 186 int EXACT_MATCH = 0; 187 191 int PREFIX_MATCH = 1; 192 197 int PATTERN_MATCH = 2; 198 199 200 201 202 208 boolean CASE_SENSITIVE = true; 209 214 boolean CASE_INSENSITIVE = false; 215 216 217 218 219 224 int FORCE_IMMEDIATE_SEARCH = IJob.ForceImmediate; 225 229 int CANCEL_IF_NOT_READY_TO_SEARCH = IJob.CancelIfNotReady; 230 234 int WAIT_UNTIL_READY_TO_SEARCH = IJob.WaitUntilReady; 235 236 237 } 238 | Popular Tags |