Package org.eclipse.ltk.core.refactoring.participants

Examples of org.eclipse.ltk.core.refactoring.participants.ResourceChangeChecker


  private List<Change> _changes = new ArrayList<Change>();

  @Override
  public RefactoringStatus checkConditions(IProgressMonitor pm, CheckConditionsContext context) throws OperationCanceledException {   
   
    ResourceChangeChecker checker = (ResourceChangeChecker) context.getChecker(ResourceChangeChecker.class);      
      IResourceChangeDescriptionFactory deltaFactory= checker.getDeltaFactory();
     
     
   
    Iterator<RefactoringInfo> infos = _refactoringInformations.iterator();
    while (infos.hasNext()) {
View Full Code Here


*/
class RefactorUtil
{
    static final void touch(CheckConditionsContext context, ISigilProjectModel sigil)
    {
        ResourceChangeChecker checker = (ResourceChangeChecker) context.getChecker(ResourceChangeChecker.class);
        IResourceChangeDescriptionFactory deltaFactory = checker.getDeltaFactory();
        IFile file = sigil.getProject().getFile(SigilCore.SIGIL_PROJECT_FILE);
        deltaFactory.change(file);
    }   
View Full Code Here

TOP

Related Classes of org.eclipse.ltk.core.refactoring.participants.ResourceChangeChecker

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.