1 19 20 package org.netbeans.modules.websvc.wsitconf.refactoring; 21 22 import org.netbeans.modules.xml.wsdl.model.WSDLModel; 27 import org.openide.filesystems.FileObject; 28 import org.openide.text.PositionBounds; 29 30 34 public abstract class AbstractRenameRefactoringElement { 35 36 38 protected boolean enabled = true; 39 protected String oldName; 40 protected String newName; 41 42 protected WSDLModel model; 43 protected FileObject parentFile; 44 45 48 public boolean isEnabled() { 50 return enabled; 51 } 52 53 56 public void setEnabled(boolean enabled) { 58 this.enabled = enabled; 59 } 60 61 64 68 71 75 78 public FileObject getParentFile() { 79 return parentFile; 80 } 81 82 84 public PositionBounds getPosition() { 85 return null; 86 } 87 88 92 97 public void setStatus(int status) { 99 } 101 102 } | Popular Tags |