phpDocumentor
PHP Version 5.3
PreXslWriterEvent | Event launched during the Xsl Transformation of an individual output file. |
<?php
/**
* phpDocumentor
*
* PHP Version 5.3
*
* @author Mike van Riel <mike.vanriel@naenius.com>
* @copyright 2010-2012 Mike van Riel / Naenius (http://www.naenius.com)
* @license http://www.opensource.org/licenses/mit-license.php MIT
* @link http://phpdoc.org
*/
namespace phpDocumentor\Transformer\Event;
use phpDocumentor\Event\EventAbstract;
/**
* Event launched during the Xsl Transformation of an individual output file.
*
* If the XSL Writer loops through a resultset then this event will be thrown
* for each result.
*
* @author Mike van Riel <mike.vanriel@naenius.com>
* @copyright 2010-2012 Mike van Riel / Naenius (http://www.naenius.com)
* @license http://www.opensource.org/licenses/mit-license.php MIT
*/
class PreXslWriterEvent extends EventAbstract
{
/** @var \DOMElement */
protected $element;
/** @var int[] */
protected $progress = array(0, 0);
/**
* Sets the currently parsed element in this event.
*
* @param \DOMElement $element
*
* @return PreXslWriterEvent
*/
public function setElement($element)
{
$this->element = $element;
return $this;
}
/**
* Returns the event that is currently being parsed.
*
* @return \DOMElement
*/
public function getElement()
{
return $this->element;
}
/**
* Sets a progress indication for this XSL Writer session.
*
* @param int[] $progress Array containing 2 integer values, the current
* step in the process and the total number of steps involved.
*
* @return PreXslWriterEvent
*/
public function setProgress($progress)
{
$this->progress = $progress;
return $this;
}
/**
* Returns the current step and tot number of steps as progress.
*
* @see setProgress() for a complete description of this array.
*
* @return int[]
*/
public function getProgress()
{
return $this->progress;
}
}