8 * This source file is subject to the new BSD license that is bundled
9 * with this package in the file LICENSE.txt.
10 * It is also available through the world-wide-web at this URL:
11 * http://framework.zend.com/license/new-bsd
12 * If you did not receive a copy of the license and are unable to
13 * obtain it through the world-wide-web, please send an email
14 * to license@zend.com so we can send you a copy immediately.
19 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
20 * @license http://framework.zend.com/license/new-bsd New BSD License
25 * @see Zend_Gdata_Extension
27 require_once 'Zend/Gdata/Extension.php';
32 require_once 'Zend/Gdata/Geo.php';
35 * @see Zend_Gdata_Geo_Extension_GmlPos
37 require_once 'Zend/Gdata/Geo/Extension/GmlPos.php';
41 * Represents the gml:point element used by the Gdata Geo extensions.
46 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
47 * @license http://framework.zend.com/license/new-bsd New BSD License
49 class Zend_Gdata_Geo_Extension_GmlPoint
extends Zend_Gdata_Extension
52 protected $_rootNamespace = 'gml';
53 protected $_rootElement = 'Point';
56 * The position represented by this GmlPoint
58 * @var Zend_Gdata_Geo_Extension_GmlPos
60 protected $_pos = null;
63 * Create a new instance.
65 * @param Zend_Gdata_Geo_Extension_GmlPos $pos (optional) Pos to which this
66 * object should be initialized.
68 public function __construct($pos = null)
70 $this->registerAllNamespaces(Zend_Gdata_Geo
::$namespaces);
71 parent
::__construct();
76 * Retrieves a DOMElement which corresponds to this element and all
77 * child properties. This is used to build an entry back into a DOM
78 * and eventually XML text for application storage/persistence.
80 * @param DOMDocument $doc The DOMDocument used to construct DOMElements
81 * @return DOMElement The DOMElement representing this element and all
84 public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
86 $element = parent
::getDOM($doc, $majorVersion, $minorVersion);
87 if ($this->_pos
!== null) {
88 $element->appendChild($this->_pos
->getDOM($element->ownerDocument
));
94 * Creates individual Entry objects of the appropriate type and
95 * stores them as members of this entry based upon DOM data.
97 * @param DOMNode $child The DOMNode to process
99 protected function takeChildFromDOM($child)
101 $absoluteNodeName = $child->namespaceURI
. ':' . $child->localName
;
103 switch ($absoluteNodeName) {
104 case $this->lookupNamespace('gml') . ':' . 'pos';
105 $pos = new Zend_Gdata_Geo_Extension_GmlPos();
106 $pos->transferFromDOM($child);
113 * Get the value for this element's pos attribute.
116 * @return Zend_Gdata_Geo_Extension_GmlPos The requested attribute.
118 public function getPos()
124 * Set the value for this element's distance attribute.
126 * @param Zend_Gdata_Geo_Extension_GmlPos $value The desired value for this attribute
127 * @return Zend_Gdata_Geo_Extension_GmlPoint Provides a fluent interface
129 public function setPos($value)
131 $this->_pos
= $value;