ipluginentrance.java~6~

来自「云网论坛CWBBS 源码,内容丰富,学习,参考,教学的好资料,具体见内说明,」· JAVA~6~ 代码 · 共 17 行

JAVA~6~
17
字号
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 + =
减小字号Ctrl + -
显示快捷键?