Ejemplo n.º 1
0
 /**
  * Get instanz of the object (Singelton) 
  *
  * @return ClipboardXml 
  */
 public static function getInstance()
 {
     if (self::$_objInstance == NULL) {
         self::$_objInstance = new ClipboardXml();
     }
     return self::$_objInstance;
 }