KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portlet > forums > model > ForumWatch


1 /*****************************************
2  * *
3  * JBoss Portal: The OpenSource Portal *
4  * *
5  * Forums JBoss Portlet *
6  * *
7  * Distributable under GPL license. *
8  * See terms of license at gnu.org. *
9  * *
10  *****************************************/

11 package org.jboss.portlet.forums.model;
12
13 /**
14  * @author <a HREF="mailto:theute@jboss.org">Thomas Heute</a>
15  * @version $Revision: 1.4 $
16  */

17 public interface ForumWatch extends Watch
18 {
19    /**
20     * DOCUMENT_ME
21     *
22     * @return DOCUMENT_ME
23     */

24    Forum getForum();
25
26    /**
27     * DOCUMENT_ME
28     *
29     * @param forum DOCUMENT_ME
30     */

31    void setForum(Forum forum);
32 }
Popular Tags