Added the zend framework 2 library, the path is specified in line no.26 in zend_modul...
[openemr.git] / interface / modules / zend_modules / library / Zend / Form / Annotation / ComposedObject.php
blob72d13178c2b29e920c33704b94b5c82f81e8b0c0
1 <?php
2 /**
3 * Zend Framework (http://framework.zend.com/)
5 * @link http://github.com/zendframework/zf2 for the canonical source repository
6 * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
7 * @license http://framework.zend.com/license/new-bsd New BSD License
8 */
10 namespace Zend\Form\Annotation;
12 /**
13 * ComposedObject annotation
15 * Use this annotation to specify another object with annotations to parse
16 * which you can then add to the form as a fieldset. The value should be a
17 * string indicating the fully qualified class name of the composed object
18 * to use.
20 * @Annotation
22 class ComposedObject extends AbstractStringAnnotation
24 /**
25 * Retrieve the composed object classname
27 * @return null|string
29 public function getComposedObject()
31 return $this->value;