Source for file PaddingRightSP.class.php

Documentation is available at PaddingRightSP.class.php

  1. <?php
  2.  
  3. require_once(HARMONI."GUIManager/StyleProperty.class.php");
  4. require_once(HARMONI."GUIManager/StyleComponents/LengthSC.class.php");
  5.  
  6. /**
  7. * The PaddingRightSP represents the 'padding-right' 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: PaddingRightSP.class.php,v 1.6 2006/06/02 15:56:08 cws-midd Exp $
  22. */
  23. class PaddingRightSP extends StyleProperty {
  24.  
  25. /**
  26. * The constructor.
  27. * @access public
  28. * @param string length The length of padding.
  29. ***/
  30. function PaddingRightSP($length) {
  31. $this->StyleProperty("padding-right", "Right Padding", "This property specifies the right padding.");
  32. if (!is_null($length)) $this->addSC(new LengthSC($length));
  33. }
  34.  
  35. }
  36.  
  37. ?>

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