1 18 19 20 package org.apache.struts.webapp.examples; 21 22 23 import org.apache.struts.action.*; 24 25 26 31 32 public final class CustomActionMapping extends ActionMapping { 33 34 35 37 38 41 private String example = ""; 42 43 44 46 47 50 public String getExample() { 51 52 return (this.example); 53 54 } 55 56 57 62 public void setExample(String example) { 63 64 this.example = example; 65 66 } 67 68 } 69 | Popular Tags |