Exemplo n.º 1
0
 public static void buildCopyDelta(
     IResourceChangeDescriptionFactory builder, IResource resource, CopyArguments args) {
   IPath destination =
       ((IResource) args.getDestination()).getFullPath().append(resource.getName());
   builder.copy(resource, destination);
 }
Exemplo n.º 2
0
 public void buildDelta(IResourceChangeDescriptionFactory builder) {
   builder.copy(fResource, fDestination);
 }