📄 ipluginentrance.java~6~
字号:
package com.redmoon.forum.plugin.base;
import javax.servlet.http.HttpServletRequest;
import cn.js.fan.util.ErrMsgException;
public interface IPluginEntrance {
public boolean canEnter(HttpServletRequest request, String boardCode) throws ErrMsgException;
public boolean isPluginBoard(String boardCode);
public boolean canAddReply(String boardCode) throws ErrMsgException;
public boolean canAddNew(String boardCode) throws ErrMsgException;
public boolean canSeeTopic(String boardCode) throws ErrMsgException;
// public boolean canUploadAttach() throws ErrMsgException;
// public boolean canDownloadAttach() throws ErrMsgException;
// public boolean canVote() throws ErrMsgException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -