Prado\Web\UI\WebControls\TMultiView::addParsedObject PHP Method

addParsedObject() public method

This method overrides the parent implementation by adding only {@link TView} controls as children.
See also: createdOnTemplate
public addParsedObject ( $object )
    public function addParsedObject($object)
    {
        if ($object instanceof TView) {
            $this->getControls()->add($object);
        } else {
            if (!is_string($object)) {
                throw new TConfigurationException('multiview_view_required');
            }
        }
    }