1 18 package org.apache.roller.ui.authoring.struts.formbeans; 19 20 import org.apache.struts.action.ActionForm; 21 22 30 public class ThemeEditorForm extends ActionForm 31 { 32 private String themeName; 33 private String themeTemplate; 34 38 public String getThemeName() 39 { 40 return themeName; 41 } 42 43 47 public String getThemeTemplate() 48 { 49 return themeTemplate; 50 } 51 52 56 public void setThemeName(String themeName) 57 { 58 this.themeName = themeName; 59 } 60 61 65 public void setThemeTemplate(String themeTemplate) 66 { 67 this.themeTemplate = themeTemplate; 68 } 69 70 } 71 | Popular Tags |