| // +--------------------------------------------------------------------+ // // $Id$ // // +X2C includes require_once 'BIFE/Widget.php'; // ~X2C // +X2C Class 5 :Container /** * Base container widget class. * * @access public * @abstract */ class BIFE_Container extends BIFE_Widget { // ~X2C // +X2C Operation 6 /** * Adds contents to the container. * * @param string $contents Contents to add to the container. * * @return void * @access public * @abstract */ function addContents($contents) // ~X2C { trigger_error('Method not implemented '.get_class($this). '::addContents().', E_USER_ERROR); } // -X2C } // -X2C Class :Container ?>