Esempio n. 1
0
 /**
  * Sets the needed static variables
  * 
  * @return  void
  */
 private static function _setStaticVars()
 {
     // Gets the instance of the number utilities
     self::$_number = Woops_Number_Utils::getInstance();
     // Static variables are set
     self::$_hasStatic = true;
 }
Esempio n. 2
0
 /**
  * Process the raw data from a binary stream
  * 
  * @return  void
  */
 public function processData(Woops_Swf_Binary_Stream $stream)
 {
     // Gets the alpha value
     $this->_alpha = $stream->unsignedChar();
     // Calls the parent method
     parent::processData($stream);
 }