Package org.eclipse.core.internal.events

Examples of org.eclipse.core.internal.events.ResourceDelta


      try {
        workspace.prepareOperation(rule, null);
        if (oldTree == null || newTree == null)
          return;
        workspace.beginOperation(true);
        ResourceDelta delta = ResourceDeltaFactory.computeDelta(workspace, oldTree, newTree, Path.ROOT, -1);
        forgetTrees(); // free trees to prevent memory leak
        workspace.getNotificationManager().broadcastChanges(listener, IResourceChangeEvent.POST_BUILD, delta);
      } finally {
        workspace.endOperation(rule, false, null);
      }
View Full Code Here

TOP

Related Classes of org.eclipse.core.internal.events.ResourceDelta

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.