Examples of RecentForumPostTopic


Examples of com.apress.progwt.client.domain.forum.RecentForumPostTopic

        setTopSchools(schoolService.getTopSchools(0, 10));
        setPopularSchools(schoolService.getPopularSchools());

        setTopUsers(userService.getTopUsers(5));

        setPostList(schoolService.getForum(new RecentForumPostTopic(), 0,
                10));

    }
View Full Code Here

Examples of com.apress.progwt.client.domain.forum.RecentForumPostTopic

        } else if (fc.getType().equals("UserForumPost")) {
            ForumPost fp = new UserForumPost();
            fp.setId(fc.getId());
            gotoThread(fp, fc.getStart(), fc.isCreate());
        } else if (fc.getType().equals("RecentForumPost")) {
            gotoForum(new RecentForumPostTopic(), fc.getStart(), false,
                    FORUM_THREAD_MAX, fc.isCreate());
        } else {
            throw new UnsupportedOperationException("Bad Forum Type: "
                    + fc.getType());
        }
View Full Code Here

Examples of com.apress.progwt.client.domain.forum.RecentForumPostTopic

            rtn.addAttribute("uniqueForumID", uniqueForumID);

        } else {

            RecentForumPostTopic rfpt = new RecentForumPostTopic();
            PostsList postList = schoolService.getForum(rfpt, 0, 15);

            ForumBootstrap bootstrap = new ForumBootstrap(gwtSerializer,
                    postList, rfpt);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.