1 17 18 package org.apache.commons.digester; 19 20 21 27 public class ParamBean { 28 29 private boolean cool; 30 private String that; 31 private String _this; 32 33 public ParamBean() {} 34 35 public boolean isCool() { 36 return cool; 37 } 38 39 public void setCool(boolean cool) { 40 this.cool = cool; 41 } 42 43 public String getThis() { 44 return _this; 45 } 46 47 public String getThat() { 48 return that; 49 } 50 51 public String setThisAndThat(String _this, String that) { 52 this._this = _this; 53 this.that = that; 54 return "The Other"; 55 } 56 } 57 | Popular Tags |