Package org.eclipse.core.internal.resources.mapping

Examples of org.eclipse.core.internal.resources.mapping.ChangeDescription.recordChange()


  private IResource[] getRootResources(IResourceDelta root) {
    final ChangeDescription changeDescription = new ChangeDescription();
    try {
      root.accept(new IResourceDeltaVisitor() {
        public boolean visit(IResourceDelta delta) {
          return changeDescription.recordChange(delta);
        }
      });
    } catch (CoreException e) {
      // Shouldn't happen since the ProposedResourceDelta accept doesn't throw an
      // exception and our visitor doesn't either
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.