Beispiel #1
0
 /**
  * Returns the Singleton instance of the {@link LexicalUtility}.
  * 
  * @return the instance of {@link LexicalUtility}
  * @throws IOException
  */
 public static function getInstance()
 {
     if (self::$instance == null) {
         self::$instance = new Eklekt_Emotion_Utility_Lexical();
     }
     return self::$instance;
 }