Java Code Examples for org.eclipse.jdt.core.search.IJavaSearchConstants#QUALIFIED_REFERENCE
The following examples show how to use
org.eclipse.jdt.core.search.IJavaSearchConstants#QUALIFIED_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 |
protected void consumeMethodInvocationName() { super.consumeMethodInvocationName(); MessageSend messageSend = (MessageSend) this.expressionStack[this.expressionPtr]; if (this.patternFineGrain == 0) { this.patternLocator.match(messageSend, this.nodeSet); } else { if (messageSend.receiver.isThis()) { if ((this.patternFineGrain & IJavaSearchConstants.IMPLICIT_THIS_REFERENCE) != 0) { this.patternLocator.match(messageSend, this.nodeSet); } } else { if ((this.patternFineGrain & IJavaSearchConstants.QUALIFIED_REFERENCE) != 0) { this.patternLocator.match(messageSend, this.nodeSet); } } } }
Example 2
Source File: MatchLocatorParser.java From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 | 6 votes |
protected void consumeMethodInvocationNameWithTypeArguments() { super.consumeMethodInvocationNameWithTypeArguments(); MessageSend messageSend = (MessageSend) this.expressionStack[this.expressionPtr]; if (this.patternFineGrain == 0) { this.patternLocator.match(messageSend, this.nodeSet); } else { if (messageSend.receiver.isThis()) { if ((this.patternFineGrain & IJavaSearchConstants.IMPLICIT_THIS_REFERENCE) != 0) { this.patternLocator.match(messageSend, this.nodeSet); } } else { if ((this.patternFineGrain & IJavaSearchConstants.QUALIFIED_REFERENCE) != 0) { this.patternLocator.match(messageSend, this.nodeSet); } } } }
Example 3
Source File: MatchLocatorParser.java From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 | 6 votes |
@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 4
Source File: MatchLocatorParser.java From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 | 6 votes |
protected NameReference getUnspecifiedReferenceOptimized() { NameReference nameRef = super.getUnspecifiedReferenceOptimized(); if (this.patternFineGrain == 0) { this.patternLocator.match(nameRef, this.nodeSet); // NB: Don't check container since unspecified reference can happen anywhere } else { boolean flagQualifiedRef = (this.patternFineGrain & IJavaSearchConstants.QUALIFIED_REFERENCE) != 0; boolean flagImplicitThis = (this.patternFineGrain & IJavaSearchConstants.IMPLICIT_THIS_REFERENCE) != 0; if (flagQualifiedRef && flagImplicitThis) { this.patternLocator.match(nameRef, this.nodeSet); } else if (flagQualifiedRef) { if (nameRef instanceof QualifiedNameReference) { this.patternLocator.match(nameRef, this.nodeSet); } } else if (flagImplicitThis) { if (nameRef instanceof SingleNameReference) { this.patternLocator.match(nameRef, this.nodeSet); } } } return nameRef; }
Example 5
Source File: MatchLocatorParser.java From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 | 5 votes |
protected NameReference getUnspecifiedReference(boolean rejectTypeAnnotations) { NameReference nameRef = super.getUnspecifiedReference(rejectTypeAnnotations); if (this.patternFineGrain == 0) { this.patternLocator.match(nameRef, this.nodeSet); // NB: Don't check container since unspecified reference can happen anywhere } else if ((this.patternFineGrain & IJavaSearchConstants.QUALIFIED_REFERENCE) != 0) { if (nameRef instanceof QualifiedNameReference) { this.patternLocator.match(nameRef, this.nodeSet); } } else if ((this.patternFineGrain & IJavaSearchConstants.IMPLICIT_THIS_REFERENCE) != 0) { if (nameRef instanceof SingleNameReference) { this.patternLocator.match(nameRef, this.nodeSet); } } return nameRef; }
Example 6
Source File: JavaSearchPattern.java From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 | 4 votes |
/** * @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(); }