1 19 package org.netbeans.modules.refactoring.api; 20 21 import org.openide.util.Lookup; 22 23 31 public final class RenameRefactoring extends AbstractRefactoring { 32 private String newName = null; 33 private boolean searchInComments; 34 35 52 public RenameRefactoring(Lookup item) { 53 super(item); 54 } 55 56 60 public String getNewName() { 61 return newName; 62 } 63 64 68 public void setNewName(String newName) { 69 this.newName = newName; 70 } 71 72 76 public boolean isSearchInComments() { 77 return searchInComments; 78 } 79 80 84 public void setSearchInComments(boolean searchInComments) { 85 this.searchInComments = searchInComments; 86 } 87 } 88 | Popular Tags |