Package org.eclipse.core.internal.resources

Examples of org.eclipse.core.internal.resources.Resource.countResources()


  public boolean visit(UnifiedTreeNode node) {
    Policy.checkCanceled(monitor);
    Resource target = (Resource) node.getResource();
    if (shouldSkip(target)) {
      removeFromSkipList(target);
      int skipTicks = target.countResources(IResource.DEPTH_INFINITE, false);
      monitor.worked(skipTicks);
      ticks -= skipTicks;
      return false;
    }
    if (isAncestorOfResourceToSkip(target))
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.