芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/yii/framework/collections/CTypedList.php
* @link http://www.yiiframework.com/ * @copyright 2008-2013 Yii Software LLC * @license http://www.yiiframework.com/license/ */ /** * CTypedList represents a list whose items are of the certain type. * * CTypedList extends {@link CList} by making sure that the elements to be * added to the list is of certain class type. * * @author Qiang Xue
* @package system.collections * @since 1.0 */ class CTypedList extends CList { private $_type; /** * Constructor. * @param string $type class type */ public function __construct($type) { $this->_type=$type; } /** * Inserts an item at the specified position. * This method overrides the parent implementation by * checking the item to be inserted is of certain type. * @param integer $index the specified position. * @param mixed $item new item * @throws CException If the index specified exceeds the bound, * the list is read-only or the element is not of the expected type. */ public function insertAt($index,$item) { if($item instanceof $this->_type) parent::insertAt($index,$item); else throw new CException(Yii::t('yii','CTypedList<{type}> can only hold objects of {type} class.', array('{type}'=>$this->_type))); } }