/**
  * Factory method for an unordered list
  *
  * @return ListElement the new instance List as an unordered list
  */
 public static function createUnordered()
 {
     $list = new self();
     $list->disableOrdered();
     return $list;
 }