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

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

Introduction

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

Prototype

int F_PARAMETERIZED_METHOD

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

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 parameterized method, or if its declaring method is a parameterized
 * method./*from w  w w.  jav a2s  .  com*/
 * 
 * @return whether this binding key represents a parameterized method
 */
public boolean isParameterizedMethod() {
    KeyKind kind = new KeyKind(this.key);
    kind.parse();
    return (kind.flags & KeyKind.F_PARAMETERIZED_METHOD) != 0;
}