Home | History | Annotate | Download | only in xmlGenerator

Lines Matching refs:child

187     def addChild(self, child, append=True) :
188 """ A.addChid(B) -> add B to A child list if B class name is in A white List"""
190 # Will raise an exception if this child is not in the white list
191 self.childWhiteList.index(child.__class__.__name__)
192 # If no exception was raised, add child to child list
195 self.children.append(child)
197 self.children.insert(0, child)
200 # the child class is not in the white list
201 raise ChildNotPermitedError("", self, child)
204 """Add a list of child"""
206 # Add children at the end of the child list
209 # Add children at the begining of the child list
215 for child in self.children :
216 body = body + child.__str__(prefix)
231 for child in self.children :
233 if child.__class__ == classtype :
234 selectedChildren.append(child)
240 for child in self.children :
241 child.propagate(context)
251 for child in self.children:
252 child.translate(translator)
353 """Return the list of all path child name"""
368 for child in self.extractChildrenByClass([Path, GroupPath]):
369 child.translate(translator)
377 It should not have any child and is propagated to all configuration in parent descendants.
450 # add same name configuration rule children to self child list
575 for child in self.extractChildrenByClass([Configuration, GroupConfiguration]):
576 child.translate(translator)
655 """ check that all configurable elements defined in child configuration are the sames"""
698 for child in self.extractChildrenByClass([Domain, GroupDomain]):
699 child.translate(translator)
768 self.comment = "syntax error in %(line)s, " + fatherElement.tag + " should not have a " + childElement.tag + " child."