1 15 package org.apache.tapestry.bean; 16 17 24 public class TargetBean 25 { 26 private boolean _required; 27 28 private int _minLength; 29 30 public int getMinLength() 31 { 32 return _minLength; 33 } 34 35 public void setMinLength(int minLength) 36 { 37 _minLength = minLength; 38 } 39 40 public boolean isRequired() 41 { 42 return _required; 43 } 44 45 public void setRequired(boolean required) 46 { 47 _required = required; 48 } 49 } 50 | Popular Tags |