Package org.jresearch.gossip.beans.forum

Examples of org.jresearch.gossip.beans.forum.Forum


            while (rs.next()) {
                if (rs.getInt("gid") != gid) {
                    gid = rs.getInt("gid");

                    Forum f = new Forum();
                    f.setTitle(IConst.JSP.OPTIONS_SEPERATOR);
                    forumsForMod.add(f);
                }

                Forum f = new Forum();
                f.setForumid(rs.getInt("fid"));
                f.setTitle(rs.getString("forumtitle"));
                forumsForMod.add(f);
            }
        } finally {
            if (rs != null) {
                rs.close();
View Full Code Here


        try {
            st.setString(1, login);
            rs = st.executeQuery();

            while (rs.next()) {
                Forum f = new Forum();
                f.setForumid(rs.getInt("forumid"));
                f.setTitle(rs.getString("forumtitle"));
                userModForums.add(f);
            }
        } finally {
            if (rs != null) {
                rs.close();
View Full Code Here

TOP

Related Classes of org.jresearch.gossip.beans.forum.Forum

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.