📄 topicbean.java
字号:
/*******************************************************************\* ** LightningBoard ** ** http://sourceforge.net/projects/lightningboard/ ** ** Copyright (c) 2002 Xiaobo Liu ** *********************************************************************** LICENSE INFORMATION ** ** LightningBoard is free software; you can redistribute it and/or ** modify it under the terms of the GNU General Public License as ** published by the Free Software Foundation; either version 2 of ** the License, or any later version. ** ** We don't charge anything for the use of LightningBoard, we only ** require you to keep the copyright present on your site and in ** the source files. ** ** LightningBoard is distributed in the hope that it will be useful,** but without any warranty; without even the implied warranty of ** merchantability or fitness for a particular purpose. See the GNU ** General Public License for more details. ** *\*******************************************************************/package liuxiaobo.lb.bean;import java.io.Serializable;public class TopicBean implements Serializable{ private java.util.Collection messages; private String f_id; private String f_name; private String f_info; private String f_u_id; private String f_topics; private String u_name; private String t_id; private String t_name; private String t_replies; private String f_messages; private String t_views; private java.util.Map forumMap; public void reset(){} public void setMessages(java.util.Collection messages) { this.messages = messages; } public java.util.Collection getMessages() { return messages; } public void setF_id(String f_id) { this.f_id = f_id; } public String getF_id() { return f_id; } public void setF_name(String f_name) { this.f_name = f_name; } public String getF_name() { return f_name; } public void setF_info(String f_info) { this.f_info = f_info; } public String getF_info() { return f_info; } public void setF_u_id(String f_u_id) { this.f_u_id = f_u_id; } public String getF_u_id() { return f_u_id; } public void setF_topics(String f_topics) { this.f_topics = f_topics; } public String getF_topics() { return f_topics; } public void setU_name(String u_name) { this.u_name = u_name; } public String getU_name() { return u_name; } public void setT_id(String t_id) { this.t_id = t_id; } public String getT_id() { return t_id; } public void setT_name(String t_name) { this.t_name = t_name; } public String getT_name() { return t_name; } public void setT_replies(String t_replies) { this.t_replies = t_replies; } public String getT_replies() { return t_replies; } public void setF_messages(String f_messages) { this.f_messages = f_messages; } public String getF_messages() { return f_messages; } public void setT_views(String t_views) { this.t_views = t_views; } public String getT_views() { return t_views; } public void setForumMap(java.util.Map forumMap) { this.forumMap = forumMap; } public java.util.Map getForumMap() { return forumMap; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -