Package org.aspectj.org.eclipse.jdt.core
Klasse CompletionFlags
java.lang.Object
org.aspectj.org.eclipse.jdt.core.CompletionFlags
Utility class for decoding additional flags in completion proposal.
This class provides static methods only; it is not intended to be instantiated or subclassed by clients.
- Seit:
- 3.3
- Siehe auch:
-
Feldübersicht
FelderModifizierer und TypFeldBeschreibungstatic final intConstant representing the absence of any flagstatic final intConstant representing a static import -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungstatic booleanisStaticImport(int flags) Returns whether the given integer includes theStaticImportflag.
-
Felddetails
-
Default
public static final int DefaultConstant representing the absence of any flag- Siehe auch:
-
StaticImport
public static final int StaticImportConstant representing a static import- Siehe auch:
-
-
Methodendetails
-
isStaticImport
public static boolean isStaticImport(int flags) Returns whether the given integer includes theStaticImportflag.- Parameter:
flags- the flags- Gibt zurück:
trueif theStaticImportflag is included
-