Server/Reflection/Node.php

Show: PublicProtectedPrivateinherited
Table of Contents
Zend Framework
LICENSE This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.
Category
Zend  
Copyright
Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)  
License
New BSD License  
Package
Zend_Server  

\Zend_Server_Reflection_Node

Package: Zend_Server\Reflection
Node Tree class for Zend_Server reflection operations
Category
Zend  
Copyright
Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)  
License
New BSD License  
Version
$Id$  

Properties

>VPropertyprotectedarray $_children = array()
Array of child nodes (if any)
Default valuearray()Details
Type
array
>VPropertyprotected\Zend_Server_Reflection_Node $_parent = null
Parent node (if any)
Default valuenullDetails
Type
\Zend_Server_Reflection_Node
>VPropertyprotectedmixed $_value = null
Node value
Default valuenullDetails
Type
mixed

Methods

methodpublic__construct(mixed $value, \Zend_Server_Reflection_Node $parent = null) : \Zend_Server_Reflection_Node

Constructor

Parameters
NameTypeDescription
$valuemixed
$parent\Zend_Server_Reflection_Node

Optional

Returns
TypeDescription
\Zend_Server_Reflection_Node
methodpublicattachChild(\Zend_Server_Reflection_Node $node) : void

Attach a child node

Parameters
NameTypeDescription
$node\Zend_Server_Reflection_Node
methodpubliccreateChild(mixed $value) : \Zend_Server_Reflection_Node

Create and attach a new child node

Parameters
NameTypeDescription
$valuemixed
Returns
TypeDescription
\Zend_Server_Reflection_NodeNew child node
Details
Access
public  
methodpublicgetChildren() : array

Return an array of all child nodes

Returns
TypeDescription
array
methodpublicgetEndPoints() : array

Retrieve the bottommost nodes of this node's tree

Retrieves the bottommost nodes of the tree by recursively calling getEndPoints() on all children. If a child is null, it returns the parent as an end point.
Returns
TypeDescription
array
methodpublicgetParent() : null | \Zend_Server_Reflection_Node

Return the parent node

Returns
TypeDescription
null | \Zend_Server_Reflection_Node
methodpublicgetValue() : mixed

Return the node's current value

Returns
TypeDescription
mixed
methodpublichasChildren() : boolean

Does this node have children?

Returns
TypeDescription
boolean
methodpublicsetParent(\Zend_Server_Reflection_Node $node, boolean $new = false) : void

Set parent node

Parameters
NameTypeDescription
$node\Zend_Server_Reflection_Node
$newboolean

Whether or not the child node is newly created and should always be attached

methodpublicsetValue(mixed $value) : void

Set the node value

Parameters
NameTypeDescription
$valuemixed
Documentation was generated by phpDocumentor 2.2.0 .