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

The following examples show how to use org.eclipse.jdt.core.search.IJavaSearchConstants#THIS_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 6 votes vote down vote up
@Override
protected void consumeReferenceExpression(ReferenceExpression referenceExpression) {
	super.consumeReferenceExpression(referenceExpression);
	if (this.patternFineGrain == 0) {
		this.patternLocator.match(referenceExpression, this.nodeSet);
	} else if ((this.patternFineGrain & IJavaSearchConstants.METHOD_REFERENCE_EXPRESSION) != 0) {
		this.patternLocator.match(referenceExpression, this.nodeSet);
	} else if (referenceExpression.lhs.isThis()) {
		if ((this.patternFineGrain & IJavaSearchConstants.THIS_REFERENCE) != 0) {
			this.patternLocator.match(referenceExpression, this.nodeSet);
		}
	} else if (referenceExpression.lhs.isSuper()) {
		if ((this.patternFineGrain & IJavaSearchConstants.SUPER_REFERENCE) != 0) {
			this.patternLocator.match(referenceExpression, this.nodeSet);
		}
	} else if (referenceExpression.lhs instanceof QualifiedNameReference || referenceExpression.lhs instanceof QualifiedTypeReference) {
		if ((this.patternFineGrain & IJavaSearchConstants.QUALIFIED_REFERENCE) != 0) {
			this.patternLocator.match(referenceExpression, 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 consumeFieldAccess(boolean isSuperAccess) {
	super.consumeFieldAccess(isSuperAccess);

	int fineGrain = isSuperAccess ? IJavaSearchConstants.SUPER_REFERENCE : IJavaSearchConstants.THIS_REFERENCE;
	if (this.patternFineGrain == 0 || (this.patternFineGrain & fineGrain) != 0) {
		// this is always a Reference
		this.patternLocator.match((Reference) this.expressionStack[this.expressionPtr], this.nodeSet);
	}
}
 
Example 3
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();
}
 
Example 4
Source File: MatchLocatorParser.java    From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 4 votes vote down vote up
protected void consumeMethodInvocationPrimary() {
	super.consumeMethodInvocationPrimary();
	if (this.patternFineGrain == 0 || (this.patternFineGrain & IJavaSearchConstants.THIS_REFERENCE) != 0) {
		this.patternLocator.match((MessageSend) this.expressionStack[this.expressionPtr], this.nodeSet);
	}
}
 
Example 5
Source File: MatchLocatorParser.java    From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 4 votes vote down vote up
protected void consumeMethodInvocationPrimaryWithTypeArguments() {
	super.consumeMethodInvocationPrimaryWithTypeArguments();
	if (this.patternFineGrain == 0 || (this.patternFineGrain & IJavaSearchConstants.THIS_REFERENCE) != 0) {
		this.patternLocator.match((MessageSend) this.expressionStack[this.expressionPtr], this.nodeSet);
	}
}