Package org.eclipse.ltk.core.refactoring.resource

Examples of org.eclipse.ltk.core.refactoring.resource.DeleteResourceChange


        file.create(source, updateFlags, progress.newChild(1, SubMonitor.SUPPRESS_NONE));

        if (encoding != null)
            file.setCharset(encoding, progress.newChild(1, SubMonitor.SUPPRESS_NONE));

        return new DeleteResourceChange(path, true);
    }
View Full Code Here


    return status;
  }

  public Change perform(IProgressMonitor _pm) throws CoreException {
    myFolder.create(false, true, _pm);
    DeleteResourceChange undoChange = new DeleteResourceChange(myFolder.getLocation(), true);
    return undoChange;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.ltk.core.refactoring.resource.DeleteResourceChange

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.