📄 themeeditorform.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -