idirectory.java

来自「cwbbs 云网论坛源码」· Java 代码 · 共 21 行

JAVA
21
字号
package com.redmoon.forum;import cn.js.fan.util.ErrMsgException;import javax.servlet.http.HttpServletRequest;import javax.servlet.ServletContext;public interface IDirectory {    public boolean AddRootChild(HttpServletRequest request) throws            ErrMsgException ;    public boolean AddChild(ServletContext application, HttpServletRequest request) throws            ErrMsgException;    public void del(ServletContext application, String delcode) throws ErrMsgException;    public boolean update(ServletContext application, HttpServletRequest request) throws ErrMsgException;    public boolean move(HttpServletRequest request) throws ErrMsgException;}

⌨️ 快捷键说明

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