1 19 20 package org.netbeans.modules.refactoring.api; 21 22 import org.openide.util.Lookup; 23 24 33 public final class SingleCopyRefactoring extends AbstractRefactoring { 34 35 private Lookup target; 36 private String newName; 37 38 51 public SingleCopyRefactoring (Lookup objectToCopy) { 52 super(objectToCopy); 53 } 54 55 67 public void setTarget(Lookup target) { 68 this.target = target; 69 } 70 71 76 public Lookup getTarget() { 77 return target; 78 } 79 80 84 public String getNewName() { 85 return newName; 86 } 87 88 92 public void setNewName(String newName) { 93 this.newName = newName; 94 } 95 } 96 97 | Popular Tags |