Examples of refreshLocal()


Examples of org.eclipse.core.resources.IResource.refreshLocal()

        File file = context.getReleaseRepository().get(symbName, Version.parseVersion(version), null);
        Jar releasedJar = null;
        if (file != null && file.exists()) {
            IResource resource = ReleaseUtils.toResource(file);
            if (resource != null) {
                resource.refreshLocal(IResource.DEPTH_ZERO, null);
            }
            releasedJar = jar;
        }
        if (releasedJar == null) {
            handleReleaseErrors(context, context.getProject(), symbName, version);
View Full Code Here

Examples of org.eclipse.core.resources.IWorkspaceRoot.refreshLocal()

      getThread().join();
      outPutHandler.outPutEnd();
     
      IWorkspaceRoot root = ResourcesPlugin.getWorkspace().getRoot();
      try {
        root.refreshLocal(IWorkspaceRoot.DEPTH_INFINITE, null);
      } catch (CoreException e) {
        e.printStackTrace();
      }
    } catch (InterruptedException iex) {
    }
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.