offlineactionsmanager.java

来自「Python Development Environment (Python I」· Java 代码 · 共 67 行

JAVA
67
字号
package org.python.pydev.editor;

import java.util.Collection;
import java.util.HashMap;
import java.util.Map;

import org.eclipse.jface.action.IAction;
import org.python.pydev.editor.actions.OfflineActionTarget;
import org.python.pydev.plugin.PydevPlugin;

/**
 * This is the class that manages the actions that are binded after Ctrl+2
 */
public class OfflineActionsManager {
    
    Map<String, ActionInfo> onOfflineActionListeners = new HashMap<String, ActionInfo>();
    
    public Collection<ActionInfo> getOfflineActionDescriptions(){
        return onOfflineActionListeners.values();
    }
    
    public void addOfflineActionListener(String key, IAction action) {
        onOfflineActionListeners.put(key, new ActionInfo(action, "not described", key, true));
    }
    
    public void addOfflineActionListener(String key, IAction action, String description, boolean needsEnter) {
        onOfflineActionListeners.put(key, new ActionInfo(action, description, key, needsEnter));
    }
    
    public boolean activatesAutomaticallyOn(String key){
        ActionInfo info = onOfflineActionListeners.get(key);
        if(info != null){
            if(!info.needsEnter){
                return true;
            }
        }
        return false;
    }
    /**
     * @return if an action was binded and was successfully executed
     */
    public boolean onOfflineAction(String requestedStr, OfflineActionTarget target) {
        ActionInfo actionInfo = onOfflineActionListeners.get(requestedStr);
        if(actionInfo == null){
            target.statusError("No action was found binded to:"+requestedStr);
            return false;
            
        }
            
        IAction action = actionInfo.action;
        if(action == null){
            target.statusError("No action was found binded to:"+requestedStr);
            return false;
        }
        
        try {
            action.run();
        } catch (Throwable e) {
            target.statusError("Exception raised when executing action:"+requestedStr+" - "+e.getMessage());
            PydevPlugin.log(e);
            return false;
        }
        return true;
    }

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?