Source for file DisplaySP.class.php

Documentation is available at DisplaySP.class.php

  1. <?php
  2.  
  3. require_once(HARMONI."GUIManager/StyleProperty.class.php");
  4. require_once(HARMONI."GUIManager/StyleComponents/DisplaySC.class.php");
  5.  
  6. /**
  7. * The DisplaySP represents the 'display' 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: DisplaySP.class.php,v 1.5 2006/06/02 15:56:07 cws-midd Exp $
  22. */
  23. class DisplaySP extends StyleProperty {
  24.  
  25. /**
  26. * The constructor. All parameters could be <code>null</code> and if so will be
  27. * ignored.
  28. * @access public
  29. * @param string value This is the value of the property.
  30. ***/
  31. function DisplaySP($value) {
  32. $this->StyleProperty("display", "Display", "Specifies the display type.");
  33. if (!is_null($value)) $this->addSC(new DisplaySC($value));
  34. }
  35.  
  36. }
  37.  
  38. ?>

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