/*
  * TODO: To be documented.
  */
 public String[] getListConditional(String name) throws NoSuchElementException {
   String s = getStringConditional(name);
   return s != null ? StringUtil.tokenVector(s) : null;
 }
 /*
  * TODO: To be documented.
  */
 public String[] getList(String name) throws NoSuchElementException {
   return StringUtil.tokenVector(getString(name));
 }