equal
deleted
inserted
replaced
13 * to license@zend.com so we can send you a copy immediately. |
13 * to license@zend.com so we can send you a copy immediately. |
14 * |
14 * |
15 * @category Zend |
15 * @category Zend |
16 * @package Zend_Pdf |
16 * @package Zend_Pdf |
17 * @subpackage Annotation |
17 * @subpackage Annotation |
18 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) |
18 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) |
19 * @license http://framework.zend.com/license/new-bsd New BSD License |
19 * @license http://framework.zend.com/license/new-bsd New BSD License |
20 * @version $Id: Annotation.php 20096 2010-01-06 02:05:09Z bkarwin $ |
20 * @version $Id: Annotation.php 24593 2012-01-05 20:35:02Z matthew $ |
21 */ |
21 */ |
22 |
22 |
23 /** Internally used classes */ |
23 /** Internally used classes */ |
24 require_once 'Zend/Pdf/Element.php'; |
24 require_once 'Zend/Pdf/Element.php'; |
25 |
25 |
30 * on a page of a PDF document, or provides a way to interact with the user by |
30 * on a page of a PDF document, or provides a way to interact with the user by |
31 * means of the mouse and keyboard. |
31 * means of the mouse and keyboard. |
32 * |
32 * |
33 * @package Zend_Pdf |
33 * @package Zend_Pdf |
34 * @subpackage Annotation |
34 * @subpackage Annotation |
35 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) |
35 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) |
36 * @license http://framework.zend.com/license/new-bsd New BSD License |
36 * @license http://framework.zend.com/license/new-bsd New BSD License |
37 */ |
37 */ |
38 abstract class Zend_Pdf_Annotation |
38 abstract class Zend_Pdf_Annotation |
39 { |
39 { |
40 /** |
40 /** |
218 |
218 |
219 /** |
219 /** |
220 * Load Annotation object from a specified resource |
220 * Load Annotation object from a specified resource |
221 * |
221 * |
222 * @internal |
222 * @internal |
223 * @param $destinationArray |
223 * @param Zend_Pdf_Element $resource |
224 * @return Zend_Pdf_Annotation |
224 * @return Zend_Pdf_Annotation |
225 */ |
225 */ |
226 public static function load(Zend_Pdf_Element $resource) |
226 public static function load(Zend_Pdf_Element $resource) |
227 { |
227 { |
228 /** @todo implementation */ |
228 /** @todo implementation */ |