1 18 19 20 package org.apache.struts.webapp.examples; 21 22 import org.apache.struts.config.FormBeanConfig; 23 24 29 30 public final class CustomFormBean extends FormBeanConfig { 31 32 33 35 36 39 private String example = ""; 40 41 42 44 45 48 public String getExample() { 49 50 return (this.example); 51 52 } 53 54 55 60 public void setExample(String example) { 61 62 this.example = example; 63 64 } 65 66 } 67 | Popular Tags |