x = $x; $this->y = $y; } /** * Throws a BasePropertyNotFound exception. * * @ignore */ public function __set( $name, $value ) { throw new ezcBasePropertyNotFoundException( $name ); } /** * Throws a BasePropertyNotFound exception. * * @ignore */ public function __get( $name ) { throw new ezcBasePropertyNotFoundException( $name ); } /** * __set_state * * @param array $properties Struct properties * @return void * @ignore */ public function __set_state( array $properties ) { $this->x = $properties['x']; $this->y = $properties['y']; } } ?>