Source for file DirectionSP.class.php

Documentation is available at DirectionSP.class.php

  1. <?php
  2.  
  3. require_once(HARMONI."GUIManager/StyleProperty.class.php");
  4. require_once(HARMONI."GUIManager/StyleComponents/DirectionSC.class.php");
  5.  
  6. /**
  7. * The DirectionSP represents the 'direction' StyleProperty.
  8. *
  9. * A StyleProperty (SP) is one of the tree building pieces of CSS styles. It stores
  10. * information about a single CSS style property by storing one or more
  11. * <code>StyleComponents</code>.
  12. *
  13. * The other two CSS styles building pieces are <code>StyleComponents</code> and
  14. * <code>StyleCollections</code>.
  15. *
  16. * @package harmoni.gui.sps
  17. *
  18. * @copyright Copyright &copy; 2005, Middlebury College
  19. * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License (GPL)
  20. *
  21. * @version $Id: DirectionSP.class.php,v 1.5 2006/06/02 15:56:07 cws-midd Exp $
  22. */
  23. class DirectionSP extends StyleProperty {
  24.  
  25. /**
  26. * The constructor.
  27. * @access public
  28. * @param string value The value of the direction property.
  29. ***/
  30. function DirectionSP($value) {
  31. $this->StyleProperty("direction", "Direction", "This property specifies the text direction.");
  32. if (!is_null($value)) $this->addSC(new DirectionSC($value));
  33. }
  34.  
  35. }
  36.  
  37. ?>

Documentation generated on Wed, 19 Sep 2007 10:22:45 -0400 by phpDocumentor 1.3.0RC3