Package org.eclipse.jdt.internal.corext.refactoring.changes

Examples of org.eclipse.jdt.internal.corext.refactoring.changes.RenameCompilationUnitChange


      }
      add(compositeChange);
      if (_renameClass) {
        if (getCompilationUnit() != null) {
          add(new RenameCompilationUnitChange(getCompilationUnit(), getNewName() + ".java"));
        }
        //if (getGroovyFile() != null) {
        //TODO Refactoring of groovy file would go here if there was a refactoring for it
        //     We could just rename it, but that would not refactor the contents
        //     A refactoring plugin is in development http://sifsstud4.hsr.ch/trac/GroovyRefactoring/wiki
View Full Code Here

TOP

Related Classes of org.eclipse.jdt.internal.corext.refactoring.changes.RenameCompilationUnitChange

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.