mixed) $options */ public function __construct( array $options = array() ) { $this->properties['xhtmlVisitor'] = 'ezcDocumentRstXhtmlVisitor'; $this->properties['xhtmlVisitorOptions'] = new ezcDocumentHtmlConverterOptions(); parent::__construct( $options ); } /** * Sets the option $name to $value. * * @throws ezcBasePropertyNotFoundException * if the property $name is not defined * @throws ezcBaseValueException * if $value is not correct for the property $name * @param string $name * @param mixed $value * @ignore */ public function __set( $name, $value ) { switch ( $name ) { case 'xhtmlVisitor': if ( !is_string( $value ) ) { throw new ezcBaseValueException( $name, $value, 'classname' ); } $this->properties[$name] = $value; break; case 'xhtmlVisitorOptions': if ( !is_object( $value ) && ( $value instanceof ezcDocumentHtmlConverterOptions ) ) { throw new ezcBaseValueException( $name, $value, 'instanceof ezcDocumentHtmlConverterOptions' ); } $this->properties[$name] = $value; break; default: parent::__set( $name, $value ); } } } ?>