Package org.aspectj.org.eclipse.jdt.internal.core.hierarchy

Examples of org.aspectj.org.eclipse.jdt.internal.core.hierarchy.TypeHierarchy


    copies = new ICompilationUnit[length];
    System.arraycopy(workingCopies, 0, copies, 0, length);
  } else {
    copies = null;
  }
  this.typeHierarchy = new TypeHierarchy(element, copies, scope, computeSubtypes);
}
View Full Code Here


    copies = new ICompilationUnit[length];
    System.arraycopy(workingCopies, 0, copies, 0, length);
  } else {
    copies = null;
  }
  this.typeHierarchy = new TypeHierarchy(element, copies, project, computeSubtypes);
}
View Full Code Here

      SafeRunner.run(new ISafeRunnable() {
        public void handleException(Throwable exception) {
          Util.log(exception, "Exception occurred in listener of Java element change notification"); //$NON-NLS-1$
        }
        public void run() throws Exception {
          TypeHierarchy typeHierarchy = (TypeHierarchy)listener;
          if (typeHierarchy.hasFineGrainChanges()) {
            // case of changes in primary working copies
            typeHierarchy.needsRefresh = true;
            typeHierarchy.fireChange();
          }
        }
      });
    }
  }
View Full Code Here

TOP

Related Classes of org.aspectj.org.eclipse.jdt.internal.core.hierarchy.TypeHierarchy

Copyright © 2018 www.massapicom. 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.