Package org.eclipse.core.internal.resources

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


        target.deleteResource(true, status);
    } catch (CoreException e) {
      status.add(e.getStatus());
      //  delete might have been partly successful, so refresh to ensure in sync
      try {
        target.refreshLocal(IResource.DEPTH_INFINITE, null);
      } catch (CoreException e1) {
        //ignore secondary failure - we are just trying to cleanup from first failure
      }
    }
  }
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.