List of usage examples for org.eclipse.jdt.internal.core.util KeyKind F_RAW_TYPE
int F_RAW_TYPE
To view the source code for org.eclipse.jdt.internal.core.util KeyKind F_RAW_TYPE.
Click Source Link
From source file:org.eclipse.imp.analysis.type.constraints.fastrep.BindingKey.java
License:Open Source License
/** * Returns whether this binding key represents a raw type. * // w w w .ja v a 2 s . com * @return whether this binding key represents a raw type */ public boolean isRawType() { KeyKind kind = new KeyKind(this.key); kind.parse(); return (kind.flags & KeyKind.F_RAW_TYPE) != 0; }