Source code: ru/gammalabs/ice/forum/web/ThreadFormBean.java
1 /*
2 * $Id: ThreadFormBean.java,v 1.1 2002/12/08 08:42:43 dimitry Exp $
3 *
4 * Copyright (c) 2002, by GammaLabs
5 *
6 * ==================================================================
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 * ==================================================================
21 *
22 */
23 package ru.gammalabs.ice.forum.web;
24
25 import org.apache.struts.action.ActionForm;
26
27 import java.util.List;
28
29 public class ThreadFormBean extends ActionForm
30 {
31 private List threads;
32
33 private boolean closed;
34
35 public List getThreads()
36 {
37 return threads;
38 }
39
40 public void setThreads(List threads)
41 {
42 this.threads = threads;
43 }
44
45 public boolean isClosed()
46 {
47 return closed;
48 }
49
50 public void setClosed(boolean closed)
51 {
52 this.closed = closed;
53 }
54 }