Home | History | Annotate | Download | only in xmlGenerator

Lines Matching refs:child

183     def addChild(self, child, append=True) :
184 """ A.addChid(B) -> add B to A child list if B class name is in A white List"""
186 # Will raise an exception if this child is not in the white list
187 self.childWhiteList.index(child.__class__.__name__)
188 # If no exception was raised, add child to child list
191 self.children.append(child)
193 self.children.insert(0, child)
196 # the child class is not in the white list
197 raise ChildNotPermitedError("", self, child)
200 """Add a list of child"""
202 # Add children at the end of the child list
205 # Add children at the begining of the child list
211 for child in self.children :
212 body = body + child.__str__(prefix)
227 for child in self.children :
229 if child.__class__ == classtype :
230 selectedChildren.append(child)
236 for child in self.children :
237 child.propagate(context)
247 for child in self.children:
248 child.translate(translator)
349 """Return the list of all path child name"""
364 for child in self.extractChildrenByClass([Path, GroupPath]):
365 child.translate(translator)
373 It should not have any child and is propagated to all configuration in parent descendants.
446 # add same name configuration rule children to self child list
571 for child in self.extractChildrenByClass([Configuration, GroupConfiguration]):
572 child.translate(translator)
651 """ check that all configurable elements defined in child configuration are the sames"""
694 for child in self.extractChildrenByClass([Domain, GroupDomain]):
695 child.translate(translator)
764 self.comment = "syntax error in %(line)s, " + fatherElement.tag + " should not have a " + childElement.tag + " child."