1 19 20 package org.netbeans.modules.xml.refactoring.actions; 21 22 import org.openide.util.actions.SystemAction; 23 24 28 public class FileRefactorAction extends RefactorAction { 29 30 31 public FileRefactorAction() { 32 } 33 34 protected SystemAction[] getGroupedActions() { 35 return new SystemAction[] { 36 SystemAction.get(FileRenameAction.class), 37 null, 38 SystemAction.get(RefactoringUndoAction.class), 39 SystemAction.get(RefactoringRedoAction.class) 40 }; 41 } 42 } 43 | Popular Tags |