Package org.eclipse.jdt.ui
Interface IJavaElementSearchConstants
public interface IJavaElementSearchConstants
Search scope constants for Java selection dialogs.
This interface declares constants only; it is not intended to be implemented.
- See Also:
- Restriction:
- This interface is not intended to be implemented by clients.
- Restriction:
- This interface is not intended to be extended by clients.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
Search scope constant indicating that classes, interfaces, annotations and enums should be considered.static final int
Search scope constant indicating that annotation types should be considered.static final int
Search scope constant (bit mask) indicating that binaries should be considered.static final int
Search scope constant indicating that classes should be considered.static final int
Search scope constant indicating that only classes and enumeration types should be considered.static final int
Search scope constant indicating that only classes and interfaces should be considered.static final int
Search scope constant indicating that enums should be considered.static final int
Search scope constant (bit mask) indicating that external JARs should be considered.static final int
Search scope constant indicating that interfaces should be considered.static final int
Search scope constant indicating that interfaces and annotation types should be considered.static final int
Search scope constant (bit mask) indicating that required projects should be considered.static final int
Deprecated.use CONSIDER_ALL_TYPES or CONSIDER_CLASSES_AND_INTERFACES instead
-
Field Details
-
CONSIDER_CLASSES
static final int CONSIDER_CLASSESSearch scope constant indicating that classes should be considered. Used when opening certain kinds of selection dialogs.- See Also:
-
CONSIDER_INTERFACES
static final int CONSIDER_INTERFACESSearch scope constant indicating that interfaces should be considered. Used when opening certain kinds of selection dialogs.- See Also:
-
CONSIDER_TYPES
Deprecated.use CONSIDER_ALL_TYPES or CONSIDER_CLASSES_AND_INTERFACES insteadSearch scope constant indicating that both classes and interfaces should be considered. Equivalent toCONSIDER_CLASSES | CONSIDER_INTERFACES
.- See Also:
-
CONSIDER_BINARIES
static final int CONSIDER_BINARIESSearch scope constant (bit mask) indicating that binaries should be considered. Used when opening certain kinds of selection dialogs.- See Also:
-
CONSIDER_EXTERNAL_JARS
static final int CONSIDER_EXTERNAL_JARSSearch scope constant (bit mask) indicating that external JARs should be considered. Used when opening certain kinds of selection dialogs.- See Also:
-
CONSIDER_REQUIRED_PROJECTS
static final int CONSIDER_REQUIRED_PROJECTSSearch scope constant (bit mask) indicating that required projects should be considered. Used when opening certain kinds of selection dialogs.- Since:
- 2.0
- See Also:
-
CONSIDER_ANNOTATION_TYPES
static final int CONSIDER_ANNOTATION_TYPESSearch scope constant indicating that annotation types should be considered. Used when opening certain kinds of selection dialogs.- Since:
- 3.1
- See Also:
-
CONSIDER_ENUMS
static final int CONSIDER_ENUMSSearch scope constant indicating that enums should be considered. Used when opening certain kinds of selection dialogs.- Since:
- 3.1
- See Also:
-
CONSIDER_ALL_TYPES
static final int CONSIDER_ALL_TYPESSearch scope constant indicating that classes, interfaces, annotations and enums should be considered.- Since:
- 3.1
- See Also:
-
CONSIDER_CLASSES_AND_INTERFACES
static final int CONSIDER_CLASSES_AND_INTERFACESSearch scope constant indicating that only classes and interfaces should be considered.- Since:
- 3.1
- See Also:
-
CONSIDER_CLASSES_AND_ENUMS
static final int CONSIDER_CLASSES_AND_ENUMSSearch scope constant indicating that only classes and enumeration types should be considered.- Since:
- 3.1
- See Also:
-
CONSIDER_INTERFACES_AND_ANNOTATIONS
static final int CONSIDER_INTERFACES_AND_ANNOTATIONSSearch scope constant indicating that interfaces and annotation types should be considered.- Since:
- 3.8
- See Also:
-