/src/cocktail/domElement/php/ImageDOMElement.hx

http://github.com/silexlabs/Cocktail · Haxe · 35 lines · 9 code · 3 blank · 23 comment · 0 complexity · 9e1196d268636f3b16d82da3d7199a12 MD5 · raw file

  1. /*
  2. This file is part of Silex - see http://projects.silexlabs.org/?/silex
  3. Silex is Š 2010-2011 Silex Labs and is released under the GPL License:
  4. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (GPL) as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
  5. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  6. To read the license please visit http://www.gnu.org/copyleft/gpl.html
  7. */
  8. package cocktail.domElement.php;
  9. import cocktail.domElement.abstract.AbstractImageDOMElement;
  10. /**
  11. * This is the JavaScript implementation of the Image DOMElement.
  12. *
  13. * It currently doesn't add any behaviour and is just there to allow
  14. * compilation
  15. *
  16. * @author Raphael HARMEL
  17. * @date 2011-08-03
  18. */
  19. class ImageDOMElement extends AbstractImageDOMElement
  20. {
  21. /**
  22. * class constructor
  23. */
  24. public function new(referenceToNativeDOMElement:Dynamic)
  25. {
  26. super(referenceToNativeDOMElement);
  27. }
  28. }