Examples of RefEntity


Examples of com.intellij.codeInspection.reference.RefEntity

    myParentFQName = parentFQName;
  }

  @Nullable
  public RefEntity getRefElement(final RefManager refManager) {
    final RefEntity refElement = refManager.getReference(myType, myFQName);
    if (refElement instanceof RefElement) {
      final PsiElement element = ((RefElement)refElement).getElement();
      if (element != null && element.isValid()) {
        PsiDocumentManager.getInstance(element.getProject()).commitAllDocuments();
      }
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.