EventArgs.php 2.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?php
  2. /*
  3. * $Id$
  4. *
  5. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  6. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  7. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  8. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  9. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  10. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  11. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  12. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  13. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  14. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  15. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  16. *
  17. * This software consists of voluntary contributions made by many individuals
  18. * and is licensed under the MIT license. For more information, see
  19. * <http://www.doctrine-project.org>.
  20. */
  21. namespace Doctrine\Common;
  22. /**
  23. * EventArgs is the base class for classes containing event data.
  24. *
  25. * This class contains no event data. It is used by events that do not pass state
  26. * information to an event handler when an event is raised. The single empty EventArgs
  27. * instance can be obtained through {@link getEmptyInstance}.
  28. *
  29. * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
  30. * @link www.doctrine-project.org
  31. * @since 2.0
  32. * @version $Revision: 3938 $
  33. * @author Guilherme Blanco <guilhermeblanco@hotmail.com>
  34. * @author Jonathan Wage <jonwage@gmail.com>
  35. * @author Roman Borschel <roman@code-factory.org>
  36. */
  37. class EventArgs
  38. {
  39. /**
  40. * @var EventArgs Single instance of EventArgs
  41. */
  42. private static $_emptyEventArgsInstance;
  43. /**
  44. * Gets the single, empty and immutable EventArgs instance.
  45. *
  46. * This instance will be used when events are dispatched without any parameter,
  47. * like this: EventManager::dispatchEvent('eventname');
  48. *
  49. * The benefit from this is that only one empty instance is instantiated and shared
  50. * (otherwise there would be instances for every dispatched in the abovementioned form)
  51. *
  52. * @see EventManager::dispatchEvent
  53. * @link http://msdn.microsoft.com/en-us/library/system.eventargs.aspx
  54. * @return EventArgs
  55. */
  56. public static function getEmptyInstance()
  57. {
  58. if ( ! self::$_emptyEventArgsInstance) {
  59. self::$_emptyEventArgsInstance = new EventArgs;
  60. }
  61. return self::$_emptyEventArgsInstance;
  62. }
  63. }