Documentation is available at MenuItem.interface.php
- <?php
- require_once(HARMONI."GUIManager/Component.interface.php");
- /**
- * <code>MenuItem</code> is an extension of <code>Component</code>; <code>MenuItems</code>
- * have display names and the ability to be added to <code>Menu</code> objects.
- *
- * @package harmoni.gui.components
- *
- * @copyright Copyright © 2005, Middlebury College
- * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License (GPL)
- *
- * @version $Id: MenuItem.interface.php,v 1.3 2005/02/07 21:38:14 adamfranco Exp $
- */
- class MenuItemInterface extends ComponentInterface {
- /**
- * Returns the display name of this menu item.
- * @access public
- * @return string The display name of this menu item.
- ***/
- function getDisplayName() {
- die ("Method <b>".__FUNCTION__."()</b> declared in interface<b> ".__CLASS__."</b> has not been overloaded in a child class.");
- }
- /**
- * Sets the display name of this menu item.
- * @access public
- * @param string displayName The new display name.
- ***/
- function setDisplayName($displayName) {
- die ("Method <b>".__FUNCTION__."()</b> declared in interface<b> ".__CLASS__."</b> has not been overloaded in a child class.");
- }
- }
- ?>
Documentation generated on Wed, 19 Sep 2007 10:25:00 -0400 by phpDocumentor 1.3.0RC3