iforumdao.java

来自「反ajax原代码」· Java 代码 · 共 52 行

JAVA
52
字号
// Decompiled by Jad v1.5.7g. Copyright 2000 Pavel Kouznetsov.
// Jad home page: http://www.geocities.com/SiliconValley/Bridge/8617/jad.html
// Decompiler options: packimports(3) fieldsfirst ansi 
// Source File Name:   IForumDAO.java

package com.laoer.bbscs.dao;

import com.laoer.bbscs.bean.Forum;
import java.util.List;

public interface IForumDAO
{

    public abstract Forum saveForum(Forum forum);

    public abstract Forum getForum(long l, long l1);

    public abstract int getForumMainNum(long l);

    public abstract int getForumAllNum(long l, short word0, short word1);

    public abstract int getForumTopicNum(long l, long l1);

    public abstract int getForumDelAllNum(long l);

    public abstract List getForumMainList(long l, int i, int j);

    public abstract List getForumAllList(long l, short word0, short word1, int i, int j);

    public abstract List getForumTopicList(long l, long l1, int i, int j);

    public abstract List getForumTopicList(long l, long l1, short word0, short word1);

    public abstract List getForumDelTopicList(long l, long l1);

    public abstract List findForumInList(long l, List list);

    public abstract List findForumDelAll(long l);

    public abstract List findForumDelAllList(long l, int i, int j);

    public abstract List findForumElite(long l, long l1, long l2);

    public abstract void removeForum(long l, long l1);

    public abstract void removeForum(Forum forum);

    public abstract int getSearchNum(long l, String s, String s1);

    public abstract List getSearchList(long l, String s, String s1, int i, int j);
}

⌨️ 快捷键说明

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