Home | History | Annotate | Download | only in core

Lines Matching refs:change

62 import org.eclipse.ltk.core.refactoring.Change;
365 public Change createChange(IProgressMonitor monitor) throws CoreException,
419 CompositeChange change,
431 addResourceXmlChanges(manifest, change, null);
452 addResourceXmlChanges(file, change, folderType);
464 change.add(new RenameResourceChange(path, newFile));
482 Change fieldChanges = mFieldRefactoring.createChange(monitor);
486 // Look for the field change on the R.java class; it's a derived file
515 TextFileChange change = new TextFileChange(file.getName(), file);
516 change.setTextType(EXT_XML);
517 change.setEdit(rootEdit);
518 changes.add(change);
715 * field to rename it. it's derived so performing this change will generate
725 TextChange change = getTextChange(rFile);
726 if (change != null) {
727 change.setEnabled(false);
735 * field to rename it. it's derived so performing this change will generate
738 * @param change the change to disable R file changes in
740 public static void disableRClassChanges(Change change) {
741 if (change.getName().equals(FN_RESOURCE_CLASS)) {
742 change.setEnabled(false);
744 // Look for the field change on the R.java class; it's a derived file
746 if (change instanceof CompositeChange) {
747 for (Change outer : ((CompositeChange) change).getChildren()) {