6 Copyright (C) 2009-2014     8     RT-Synthesis Research Group     9     Intelligent Systems Research Institute,    10     National Institute of Advanced Industrial Science and Technology (AIST),    13 Licensed under the Eclipse Public License -v 1.0 (EPL)    14 http://www.opensource.org/licenses/eclipse-1.0.txt    16 Object representing a zombie node in the tree.    29     '''Node representing a zombie object on a name server.    31     Zombie nodes can occur below name server and directory nodes. They    32     cannot contain any children. They do not contain a reference to a    33     CORBA object as they represent the lack of such an object under a    34     name still registered on the name server.    37     def __init__(self, name, parent, *args, **kwargs):
    40         @param name Name of this object (i.e. its entry in the path).    41         @param parent The parent node of this node, if any.    44         super(Zombie, self).
__init__(name=name, parent=parent, *args, **kwargs)
    48         '''Is this node a zombie?'''    57         raise CannotHoldChildrenError
 
def _add_child(self)
Internal API. 
def __init__(self, name, parent, args, kwargs)