Examples of IdRefReference


Examples of com.intellij.psi.impl.source.resolve.reference.impl.providers.IdRefReference

    @NotNull
    @Override
    public PsiReference[] getReferencesByElement(@NotNull final PsiElement element,
                                                 @NotNull final ProcessingContext context) {
      return new PsiReference[]{new IdRefReference(element) {
        @Override
        public PsiElement resolve() {
          final PsiElement resolve = super.resolve();
          if (resolve != null) {
            return resolve;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.