1 11 package org.eclipse.jdt.ui; 12 13 21 public interface IJavaElementSearchConstants { 22 23 27 public static final int CONSIDER_CLASSES= 1 << 1; 28 29 33 public static final int CONSIDER_INTERFACES= 1 << 2; 34 35 42 public static final int CONSIDER_TYPES= CONSIDER_CLASSES | CONSIDER_INTERFACES; 43 44 48 public static final int CONSIDER_BINARIES= 1 << 3; 49 50 54 public static final int CONSIDER_EXTERNAL_JARS= 1 << 4; 55 56 62 public static final int CONSIDER_REQUIRED_PROJECTS= 1 << 5; 63 64 70 public static final int CONSIDER_ANNOTATION_TYPES= 1 << 6; 71 72 78 public static final int CONSIDER_ENUMS= 1 << 7; 79 80 86 public static final int CONSIDER_ALL_TYPES= 1 << 8; 87 88 94 public static final int CONSIDER_CLASSES_AND_INTERFACES= 1 << 9; 95 96 102 public static final int CONSIDER_CLASSES_AND_ENUMS= 1 << 10; 103 } 104 | Popular Tags |