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

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


        if (!info.getElement().getFullPath().isPrefixOf(info.getFile().getParent().getFullPath())) {
          CompositeChange delChange = new CompositeChange("Deletions");
          delChange.add(new DeleteWGAResourceChange(info.getFile().getParent().getFullPath(),false));
         
         
          for(RefactoringInfo currentInfo : getAffectedResources(info.getFile().getParent(), new DeleteArguments())){
            delChange.add(createChange(currentInfo));
          }     
       
          return delChange; 
          }
View Full Code Here

TOP

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

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.