themeeditorform.java
来自「这个weblogging 设计得比较精巧」· Java 代码 · 共 54 行
JAVA
54 行
package org.roller.presentation.website.formbeans;import org.apache.struts.action.ActionForm;/** * Holds the name of the theme chosen or * the template being edited. * * @struts.form name="themeEditorForm" * * @author llavandowska */public class ThemeEditorForm extends ActionForm{ private String themeName; private String themeTemplate; /** * Returns the themeName. * @return String */ public String getThemeName() { return themeName; } /** * Returns the themeTemplate. * @return String */ public String getThemeTemplate() { return themeTemplate; } /** * Sets the themeName. * @param themeName The themeName to set */ public void setThemeName(String themeName) { this.themeName = themeName; } /** * Sets the themeTemplate. * @param themeTemplate The themeTemplate to set */ public void setThemeTemplate(String themeTemplate) { this.themeTemplate = themeTemplate; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?