Java Code Examples for org.eclipse.jdt.core.search.IJavaSearchConstants#TYPE_VARIABLE_BOUND_TYPE_REFERENCE

The following examples show how to use org.eclipse.jdt.core.search.IJavaSearchConstants#TYPE_VARIABLE_BOUND_TYPE_REFERENCE . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: MatchLocatorParser.java    From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 5 votes vote down vote up
protected void consumeAdditionalBound() {
	super.consumeAdditionalBound();
	if ((this.patternFineGrain & IJavaSearchConstants.TYPE_VARIABLE_BOUND_TYPE_REFERENCE) != 0) {
		TypeReference typeReference = (TypeReference) this.genericsStack[this.genericsPtr];
		this.patternLocator.match(typeReference, this.nodeSet);
	}
}
 
Example 2
Source File: MatchLocatorParser.java    From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 5 votes vote down vote up
protected void consumeTypeParameter1WithExtends() {
	super.consumeTypeParameter1WithExtends();
	if ((this.patternFineGrain & IJavaSearchConstants.TYPE_VARIABLE_BOUND_TYPE_REFERENCE) != 0) {
		TypeParameter typeParameter = (TypeParameter) this.genericsStack[this.genericsPtr];
		this.patternLocator.match(typeParameter.type, this.nodeSet);
	}
}
 
Example 3
Source File: MatchLocatorParser.java    From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 5 votes vote down vote up
protected void consumeTypeParameter1WithExtendsAndBounds() {
	super.consumeTypeParameter1WithExtendsAndBounds();
	if ((this.patternFineGrain & IJavaSearchConstants.TYPE_VARIABLE_BOUND_TYPE_REFERENCE) != 0) {
		TypeParameter typeParameter = (TypeParameter) this.genericsStack[this.genericsPtr];
		this.patternLocator.match(typeParameter.type, this.nodeSet);
	}
}
 
Example 4
Source File: MatchLocatorParser.java    From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 5 votes vote down vote up
protected void consumeTypeParameterWithExtends() {
	super.consumeTypeParameterWithExtends();
	if ((this.patternFineGrain & IJavaSearchConstants.TYPE_VARIABLE_BOUND_TYPE_REFERENCE) != 0) {
		TypeParameter typeParameter = (TypeParameter) this.genericsStack[this.genericsPtr];
		this.patternLocator.match(typeParameter.type, this.nodeSet);
	}
}
 
Example 5
Source File: MatchLocatorParser.java    From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 5 votes vote down vote up
protected void consumeTypeParameterWithExtendsAndBounds() {
	super.consumeTypeParameterWithExtendsAndBounds();
	if ((this.patternFineGrain & IJavaSearchConstants.TYPE_VARIABLE_BOUND_TYPE_REFERENCE) != 0) {
		TypeParameter typeParameter = (TypeParameter) this.genericsStack[this.genericsPtr];
		this.patternLocator.match(typeParameter.type, this.nodeSet);
	}
}
 
Example 6
Source File: JavaSearchPattern.java    From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 4 votes vote down vote up
/**
 * @param fineGrain
 */
public static String getFineGrainFlagString(final int fineGrain) {
	if (fineGrain == 0) {
		return "none"; //$NON-NLS-1$
	}
	StringBuffer buffer = new StringBuffer();
	for (int i=1; i<=32; i++) {
		int bit = fineGrain & (1<<(i-1));
		if (bit != 0 && buffer.length()>0) buffer.append(" | "); //$NON-NLS-1$
		switch (bit) {
			case IJavaSearchConstants.FIELD_DECLARATION_TYPE_REFERENCE:
				buffer.append("FIELD_DECLARATION_TYPE_REFERENCE"); //$NON-NLS-1$
				break;
			case IJavaSearchConstants.LOCAL_VARIABLE_DECLARATION_TYPE_REFERENCE:
				buffer.append("LOCAL_VARIABLE_DECLARATION_TYPE_REFERENCE"); //$NON-NLS-1$
				break;
			case IJavaSearchConstants.PARAMETER_DECLARATION_TYPE_REFERENCE:
				buffer.append("PARAMETER_DECLARATION_TYPE_REFERENCE"); //$NON-NLS-1$
				break;
			case IJavaSearchConstants.SUPERTYPE_TYPE_REFERENCE:
				buffer.append("SUPERTYPE_TYPE_REFERENCE"); //$NON-NLS-1$
				break;
			case IJavaSearchConstants.THROWS_CLAUSE_TYPE_REFERENCE:
				buffer.append("THROWS_CLAUSE_TYPE_REFERENCE"); //$NON-NLS-1$
				break;
			case IJavaSearchConstants.CAST_TYPE_REFERENCE:
				buffer.append("CAST_TYPE_REFERENCE"); //$NON-NLS-1$
				break;
			case IJavaSearchConstants.CATCH_TYPE_REFERENCE:
				buffer.append("CATCH_TYPE_REFERENCE"); //$NON-NLS-1$
				break;
			case IJavaSearchConstants.CLASS_INSTANCE_CREATION_TYPE_REFERENCE:
				buffer.append("CLASS_INSTANCE_CREATION_TYPE_REFERENCE"); //$NON-NLS-1$
				break;
			case IJavaSearchConstants.RETURN_TYPE_REFERENCE:
				buffer.append("RETURN_TYPE_REFERENCE"); //$NON-NLS-1$
				break;
			case IJavaSearchConstants.IMPORT_DECLARATION_TYPE_REFERENCE:
				buffer.append("IMPORT_DECLARATION_TYPE_REFERENCE"); //$NON-NLS-1$
				break;
			case IJavaSearchConstants.ANNOTATION_TYPE_REFERENCE:
				buffer.append("ANNOTATION_TYPE_REFERENCE"); //$NON-NLS-1$
				break;
			case IJavaSearchConstants.TYPE_ARGUMENT_TYPE_REFERENCE:
				buffer.append("TYPE_ARGUMENT_TYPE_REFERENCE"); //$NON-NLS-1$
				break;
			case IJavaSearchConstants.TYPE_VARIABLE_BOUND_TYPE_REFERENCE:
				buffer.append("TYPE_VARIABLE_BOUND_TYPE_REFERENCE"); //$NON-NLS-1$
				break;
			case IJavaSearchConstants.WILDCARD_BOUND_TYPE_REFERENCE:
				buffer.append("WILDCARD_BOUND_TYPE_REFERENCE"); //$NON-NLS-1$
				break;
			case IJavaSearchConstants.SUPER_REFERENCE:
				buffer.append("SUPER_REFERENCE"); //$NON-NLS-1$
				break;
			case IJavaSearchConstants.QUALIFIED_REFERENCE:
				buffer.append("QUALIFIED_REFERENCE"); //$NON-NLS-1$
				break;
			case IJavaSearchConstants.THIS_REFERENCE:
				buffer.append("THIS_REFERENCE"); //$NON-NLS-1$
				break;
			case IJavaSearchConstants.IMPLICIT_THIS_REFERENCE:
				buffer.append("IMPLICIT_THIS_REFERENCE"); //$NON-NLS-1$
				break;
			case IJavaSearchConstants.METHOD_REFERENCE_EXPRESSION:
				buffer.append("METHOD_REFERENCE_EXPRESSION"); //$NON-NLS-1$
				break;
		}
	}
	return buffer.toString();
}