/**
  * Retrieve instance of an TaggedArticleDAO or create one if it does
  * not exist.
  *
  * @access public
  * @static
  * @return TaggedArticleDAO
  */
 public static function getInstance()
 {
     if (!isset(self::$instance)) {
         self::$instance = new self();
     }
     return self::$instance;
 }