Example usage for org.eclipse.jdt.internal.core.util KeyKind F_RAW_TYPE

List of usage examples for org.eclipse.jdt.internal.core.util KeyKind F_RAW_TYPE

Introduction

In this page you can find the example usage for org.eclipse.jdt.internal.core.util KeyKind F_RAW_TYPE.

Prototype

int F_RAW_TYPE

To view the source code for org.eclipse.jdt.internal.core.util KeyKind F_RAW_TYPE.

Click Source Link

Usage

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;
}