/**
  * Get the shared KiTT_Formatter used for this instance
  *
  * @return KiTT_Formatter
  */
 public static function getFormatter()
 {
     if (self::$_formatter === null) {
         self::$_formatter = new KiTT_DefaultFormatter();
     }
     return self::$_formatter;
 }