📄 homebean.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 HomeBean implements Serializable{ private java.util.Collection forums; private String topicSum; private String messageSum; private String userSum; public java.util.Collection getForums() { return forums; } public void setForums(java.util.Collection forums) { this.forums = forums; } public void setTopicSum(String topicSum) { this.topicSum = topicSum; } public String getTopicSum() { return topicSum; } public void setMessageSum(String messageSum) { this.messageSum = messageSum; } public String getMessageSum() { return messageSum; } public void setUserSum(String userSum) { this.userSum = userSum; } public String getUserSum() { return userSum; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -