Example #1
0
 /** @param searchChildIn The searchChild to set. */
 public void setSearchchild(String searchChildIn) {
   searchChild = ListTagUtil.toBoolean(searchChildIn);
 }
Example #2
0
 /**
  * if set to true, the page numbers at the top and bottom of the list will not be displayed
  *
  * @param value true or false
  */
 public void setHidepagenums(String value) {
   hidePageNums = ListTagUtil.toBoolean(value);
 }
Example #3
0
 /**
  * if set to true, the parent in a tree setup will be considered as an element by itself
  *
  * @param value true or false
  */
 public void setParentiselement(String value) {
   parentIsElement = ListTagUtil.toBoolean(value);
 }
Example #4
0
 /** @param searchParentIn The searchParent to set. */
 public void setSearchparent(String searchParentIn) {
   searchParent = ListTagUtil.toBoolean(searchParentIn);
 }