@Override
  protected String getEditorJSP(String type) {
    ActionHandler actionHandler = ActionHandlerManagerUtil.getActionHandler(type);

    String editorJSP = null;

    if (actionHandler != null) {
      editorJSP = _editorJSPs.get(actionHandler.getClass());
    }

    if (editorJSP == null) {
      editorJSP = StringPool.BLANK;
    }

    return editorJSP;
  }