. */ namespace Doctrine\Common; /** * EventArgs is the base class for classes containing event data. * * This class contains no event data and cannot be instantiated. * It is used by events that do not pass state information to an event handler * when an event is raised. The single empty EventArgs instance can be obtained * through {@link getEmptyInstance()}. * * @author Konsta Vesterinen * @author Roman Borschel * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @link www.doctrine-project.org * @since 2.0 * @version $Revision$ */ class EventArgs { private static $_emptyEventArgsInstance; private $_defaultPrevented; protected function __construct() { $this->_defaultPrevented = false; } public function preventDefault() { $this->_defaultPrevented = true; } public function getDefaultPrevented() { return $this->_defaultPrevented; } public static function getEmptyInstance() { if ( ! self::$_emptyEventArgsInstance) { self::$_emptyEventArgsInstance = new EventArgs; } return self::$_emptyEventArgsInstance; } }