Java 类org.eclipse.ui.actions.MoveResourceAction 实例源码

项目:translationstudio8    文件:RefactorActionGroup.java   
protected void makeActions() {
    IShellProvider sp = new IShellProvider() {
        public Shell getShell() {
            return shell;
        }
    };

    moveAction = new MoveResourceAction(sp);
    moveAction.setText(WorkbenchNavigatorMessages.actions_RefactorActionGroup_moveAction);
    moveAction.setActionDefinitionId(IWorkbenchCommandConstants.FILE_MOVE);

    renameAction = new RenameResourceAndCloseEditorAction(sp, tree);
    renameAction.setText(WorkbenchNavigatorMessages.actions_RefactorActionGroup_renameAction);
    renameAction.setActionDefinitionId(IWorkbenchCommandConstants.FILE_RENAME);
}
项目:tmxeditor8    文件:RefactorActionGroup.java   
protected void makeActions() {
    IShellProvider sp = new IShellProvider() {
        public Shell getShell() {
            return shell;
        }
    };

    moveAction = new MoveResourceAction(sp);
    moveAction.setText(WorkbenchNavigatorMessages.actions_RefactorActionGroup_moveAction);
    moveAction.setActionDefinitionId(IWorkbenchCommandConstants.FILE_MOVE);

    renameAction = new RenameResourceAndCloseEditorAction(sp, tree);
    renameAction.setText(WorkbenchNavigatorMessages.actions_RefactorActionGroup_renameAction);
    renameAction.setActionDefinitionId(IWorkbenchCommandConstants.FILE_RENAME);
}