( self, name, parent, dictAttributes )
| 77 | class xmlElement: |
| 78 | |
| 79 | def __init__( self, name, parent, dictAttributes ): |
| 80 | self.data = None |
| 81 | self.name = name |
| 82 | self.parent = parent |
| 83 | self.dictAttributes = dictAttributes |
| 84 | self.listChildren = [ ] |
| 85 | self.dictData = { } |
| 86 | |
| 87 | |
| 88 | def __str__( self ): |