1 package org.roller.presentation.website.formbeans; 2 3 import org.apache.struts.action.ActionForm; 4 5 13 public class ThemeEditorForm extends ActionForm 14 { 15 private String themeName; 16 private String themeTemplate; 17 21 public String getThemeName() 22 { 23 return themeName; 24 } 25 26 30 public String getThemeTemplate() 31 { 32 return themeTemplate; 33 } 34 35 39 public void setThemeName(String themeName) 40 { 41 this.themeName = themeName; 42 } 43 44 48 public void setThemeTemplate(String themeTemplate) 49 { 50 this.themeTemplate = themeTemplate; 51 } 52 53 } 54 | Popular Tags |