Example usage for org.eclipse.jdt.internal.core.search BasicSearchEngine createTypeNameMatch

List of usage examples for org.eclipse.jdt.internal.core.search BasicSearchEngine createTypeNameMatch

Introduction

In this page you can find the example usage for org.eclipse.jdt.internal.core.search BasicSearchEngine createTypeNameMatch.

Prototype

public static TypeNameMatch createTypeNameMatch(IType type, int modifiers) 

Source Link

Usage

From source file:org.eclipse.jdt.core.search.SearchEngine.java

License:Open Source License

/**
 * Create a type name match on a given type with specific modifiers.
 *
 * @param type The java model handle of the type
 * @param modifiers Modifiers of the type
 * @return A non-null match on the given type.
 * @since 3.3/*from w  ww  .ja va2  s .  c o  m*/
 */
public static TypeNameMatch createTypeNameMatch(IType type, int modifiers) {
    return BasicSearchEngine.createTypeNameMatch(type, modifiers);
}