File indexing completed on 2024-05-12 16:09:11

0001 class pyqtSignal():
0002  def connect(self, targetSignal): pass
0003  def emit(self, *args): pass
0004 from QtCore import *
0005 
0006 from QtWidgets import *
0007 
0008 import datetime
0009 
0010 class QXmlNamespaceSupport():
0011     """"""
0012     def __init__(self):
0013         '''void QXmlNamespaceSupport.__init__()'''
0014     def reset(self):
0015         '''void QXmlNamespaceSupport.reset()'''
0016     def popContext(self):
0017         '''void QXmlNamespaceSupport.popContext()'''
0018     def pushContext(self):
0019         '''void QXmlNamespaceSupport.pushContext()'''
0020     def prefixes(self):
0021         '''list-of-str QXmlNamespaceSupport.prefixes()'''
0022         return [str()]
0023     def prefixes(self):
0024         '''str QXmlNamespaceSupport.prefixes()'''
0025         return str()
0026     def processName(self):
0027         '''str QXmlNamespaceSupport.processName()'''
0028         return str()
0029     def splitName(self):
0030         '''str QXmlNamespaceSupport.splitName()'''
0031         return str()
0032     def uri(self):
0033         '''str QXmlNamespaceSupport.uri()'''
0034         return str()
0035     def prefix(self):
0036         '''str QXmlNamespaceSupport.prefix()'''
0037         return str()
0038     def setPrefix(self):
0039         '''str QXmlNamespaceSupport.setPrefix()'''
0040         return str()
0041 
0042 
0043 class QXmlAttributes():
0044     """"""
0045     def __init__(self):
0046         '''void QXmlAttributes.__init__()'''
0047     def __init__(self):
0048         '''QXmlAttributes QXmlAttributes.__init__()'''
0049         return QXmlAttributes()
0050     def __len__(self):
0051         ''' QXmlAttributes.__len__()'''
0052         return ()
0053     def count(self):
0054         '''int QXmlAttributes.count()'''
0055         return int()
0056     def append(self, qName, uri, localPart, value):
0057         '''void QXmlAttributes.append(str qName, str uri, str localPart, str value)'''
0058     def clear(self):
0059         '''void QXmlAttributes.clear()'''
0060     def value(self, index):
0061         '''str QXmlAttributes.value(int index)'''
0062         return str()
0063     def value(self, qName):
0064         '''str QXmlAttributes.value(str qName)'''
0065         return str()
0066     def value(self, uri, localName):
0067         '''str QXmlAttributes.value(str uri, str localName)'''
0068         return str()
0069     def type(self, index):
0070         '''str QXmlAttributes.type(int index)'''
0071         return str()
0072     def type(self, qName):
0073         '''str QXmlAttributes.type(str qName)'''
0074         return str()
0075     def type(self, uri, localName):
0076         '''str QXmlAttributes.type(str uri, str localName)'''
0077         return str()
0078     def uri(self, index):
0079         '''str QXmlAttributes.uri(int index)'''
0080         return str()
0081     def qName(self, index):
0082         '''str QXmlAttributes.qName(int index)'''
0083         return str()
0084     def localName(self, index):
0085         '''str QXmlAttributes.localName(int index)'''
0086         return str()
0087     def length(self):
0088         '''int QXmlAttributes.length()'''
0089         return int()
0090     def index(self, qName):
0091         '''int QXmlAttributes.index(str qName)'''
0092         return int()
0093     def index(self, uri, localPart):
0094         '''int QXmlAttributes.index(str uri, str localPart)'''
0095         return int()
0096 
0097 
0098 class QXmlInputSource():
0099     """"""
0100     EndOfData = None # int - member
0101     EndOfDocument = None # int - member
0102     def __init__(self):
0103         '''void QXmlInputSource.__init__()'''
0104     def __init__(self, dev):
0105         '''void QXmlInputSource.__init__(QIODevice dev)'''
0106     def __init__(self):
0107         '''QXmlInputSource QXmlInputSource.__init__()'''
0108         return QXmlInputSource()
0109     def fromRawData(self, data, beginning = False):
0110         '''str QXmlInputSource.fromRawData(QByteArray data, bool beginning = False)'''
0111         return str()
0112     def reset(self):
0113         '''void QXmlInputSource.reset()'''
0114     def next(self):
0115         '''str QXmlInputSource.next()'''
0116         return str()
0117     def data(self):
0118         '''str QXmlInputSource.data()'''
0119         return str()
0120     def fetchData(self):
0121         '''void QXmlInputSource.fetchData()'''
0122     def setData(self, dat):
0123         '''void QXmlInputSource.setData(str dat)'''
0124     def setData(self, dat):
0125         '''void QXmlInputSource.setData(QByteArray dat)'''
0126 
0127 
0128 class QXmlParseException():
0129     """"""
0130     def __init__(self, name = str(), column = None, line = None, publicId = str(), systemId = str()):
0131         '''void QXmlParseException.__init__(str name = str(), int column = -1, int line = -1, str publicId = str(), str systemId = str())'''
0132     def __init__(self, other):
0133         '''void QXmlParseException.__init__(QXmlParseException other)'''
0134     def message(self):
0135         '''str QXmlParseException.message()'''
0136         return str()
0137     def systemId(self):
0138         '''str QXmlParseException.systemId()'''
0139         return str()
0140     def publicId(self):
0141         '''str QXmlParseException.publicId()'''
0142         return str()
0143     def lineNumber(self):
0144         '''int QXmlParseException.lineNumber()'''
0145         return int()
0146     def columnNumber(self):
0147         '''int QXmlParseException.columnNumber()'''
0148         return int()
0149 
0150 
0151 class QXmlReader():
0152     """"""
0153     def __init__(self):
0154         '''void QXmlReader.__init__()'''
0155     def __init__(self):
0156         '''QXmlReader QXmlReader.__init__()'''
0157         return QXmlReader()
0158     def parse(self, input):
0159         '''abstract bool QXmlReader.parse(QXmlInputSource input)'''
0160         return bool()
0161     def parse(self, input):
0162         '''abstract bool QXmlReader.parse(QXmlInputSource input)'''
0163         return bool()
0164     def declHandler(self):
0165         '''abstract QXmlDeclHandler QXmlReader.declHandler()'''
0166         return QXmlDeclHandler()
0167     def setDeclHandler(self, handler):
0168         '''abstract void QXmlReader.setDeclHandler(QXmlDeclHandler handler)'''
0169     def lexicalHandler(self):
0170         '''abstract QXmlLexicalHandler QXmlReader.lexicalHandler()'''
0171         return QXmlLexicalHandler()
0172     def setLexicalHandler(self, handler):
0173         '''abstract void QXmlReader.setLexicalHandler(QXmlLexicalHandler handler)'''
0174     def errorHandler(self):
0175         '''abstract QXmlErrorHandler QXmlReader.errorHandler()'''
0176         return QXmlErrorHandler()
0177     def setErrorHandler(self, handler):
0178         '''abstract void QXmlReader.setErrorHandler(QXmlErrorHandler handler)'''
0179     def contentHandler(self):
0180         '''abstract QXmlContentHandler QXmlReader.contentHandler()'''
0181         return QXmlContentHandler()
0182     def setContentHandler(self, handler):
0183         '''abstract void QXmlReader.setContentHandler(QXmlContentHandler handler)'''
0184     def DTDHandler(self):
0185         '''abstract QXmlDTDHandler QXmlReader.DTDHandler()'''
0186         return QXmlDTDHandler()
0187     def setDTDHandler(self, handler):
0188         '''abstract void QXmlReader.setDTDHandler(QXmlDTDHandler handler)'''
0189     def entityResolver(self):
0190         '''abstract QXmlEntityResolver QXmlReader.entityResolver()'''
0191         return QXmlEntityResolver()
0192     def setEntityResolver(self, handler):
0193         '''abstract void QXmlReader.setEntityResolver(QXmlEntityResolver handler)'''
0194     def hasProperty(self, name):
0195         '''abstract bool QXmlReader.hasProperty(str name)'''
0196         return bool()
0197     def setProperty(self, name, value):
0198         '''abstract void QXmlReader.setProperty(str name, sip.voidptr value)'''
0199     def property(self, name, ok):
0200         '''abstract sip.voidptr QXmlReader.property(str name, bool ok)'''
0201         return sip.voidptr()
0202     def hasFeature(self, name):
0203         '''abstract bool QXmlReader.hasFeature(str name)'''
0204         return bool()
0205     def setFeature(self, name, value):
0206         '''abstract void QXmlReader.setFeature(str name, bool value)'''
0207     def feature(self, name, ok):
0208         '''abstract bool QXmlReader.feature(str name, bool ok)'''
0209         return bool()
0210 
0211 
0212 class QXmlSimpleReader(QXmlReader):
0213     """"""
0214     def __init__(self):
0215         '''void QXmlSimpleReader.__init__()'''
0216     def parseContinue(self):
0217         '''bool QXmlSimpleReader.parseContinue()'''
0218         return bool()
0219     def parse(self, input):
0220         '''bool QXmlSimpleReader.parse(QXmlInputSource input)'''
0221         return bool()
0222     def parse(self, input, incremental):
0223         '''bool QXmlSimpleReader.parse(QXmlInputSource input, bool incremental)'''
0224         return bool()
0225     def declHandler(self):
0226         '''QXmlDeclHandler QXmlSimpleReader.declHandler()'''
0227         return QXmlDeclHandler()
0228     def setDeclHandler(self, handler):
0229         '''void QXmlSimpleReader.setDeclHandler(QXmlDeclHandler handler)'''
0230     def lexicalHandler(self):
0231         '''QXmlLexicalHandler QXmlSimpleReader.lexicalHandler()'''
0232         return QXmlLexicalHandler()
0233     def setLexicalHandler(self, handler):
0234         '''void QXmlSimpleReader.setLexicalHandler(QXmlLexicalHandler handler)'''
0235     def errorHandler(self):
0236         '''QXmlErrorHandler QXmlSimpleReader.errorHandler()'''
0237         return QXmlErrorHandler()
0238     def setErrorHandler(self, handler):
0239         '''void QXmlSimpleReader.setErrorHandler(QXmlErrorHandler handler)'''
0240     def contentHandler(self):
0241         '''QXmlContentHandler QXmlSimpleReader.contentHandler()'''
0242         return QXmlContentHandler()
0243     def setContentHandler(self, handler):
0244         '''void QXmlSimpleReader.setContentHandler(QXmlContentHandler handler)'''
0245     def DTDHandler(self):
0246         '''QXmlDTDHandler QXmlSimpleReader.DTDHandler()'''
0247         return QXmlDTDHandler()
0248     def setDTDHandler(self, handler):
0249         '''void QXmlSimpleReader.setDTDHandler(QXmlDTDHandler handler)'''
0250     def entityResolver(self):
0251         '''QXmlEntityResolver QXmlSimpleReader.entityResolver()'''
0252         return QXmlEntityResolver()
0253     def setEntityResolver(self, handler):
0254         '''void QXmlSimpleReader.setEntityResolver(QXmlEntityResolver handler)'''
0255     def hasProperty(self, name):
0256         '''bool QXmlSimpleReader.hasProperty(str name)'''
0257         return bool()
0258     def setProperty(self, name, value):
0259         '''void QXmlSimpleReader.setProperty(str name, sip.voidptr value)'''
0260     def property(self, name, ok):
0261         '''sip.voidptr QXmlSimpleReader.property(str name, bool ok)'''
0262         return sip.voidptr()
0263     def hasFeature(self, name):
0264         '''bool QXmlSimpleReader.hasFeature(str name)'''
0265         return bool()
0266     def setFeature(self, name, value):
0267         '''void QXmlSimpleReader.setFeature(str name, bool value)'''
0268     def feature(self, name, ok):
0269         '''bool QXmlSimpleReader.feature(str name, bool ok)'''
0270         return bool()
0271 
0272 
0273 class QXmlLocator():
0274     """"""
0275     def __init__(self):
0276         '''void QXmlLocator.__init__()'''
0277     def __init__(self):
0278         '''QXmlLocator QXmlLocator.__init__()'''
0279         return QXmlLocator()
0280     def lineNumber(self):
0281         '''abstract int QXmlLocator.lineNumber()'''
0282         return int()
0283     def columnNumber(self):
0284         '''abstract int QXmlLocator.columnNumber()'''
0285         return int()
0286 
0287 
0288 class QXmlContentHandler():
0289     """"""
0290     def __init__(self):
0291         '''void QXmlContentHandler.__init__()'''
0292     def __init__(self):
0293         '''QXmlContentHandler QXmlContentHandler.__init__()'''
0294         return QXmlContentHandler()
0295     def errorString(self):
0296         '''abstract str QXmlContentHandler.errorString()'''
0297         return str()
0298     def skippedEntity(self, name):
0299         '''abstract bool QXmlContentHandler.skippedEntity(str name)'''
0300         return bool()
0301     def processingInstruction(self, target, data):
0302         '''abstract bool QXmlContentHandler.processingInstruction(str target, str data)'''
0303         return bool()
0304     def ignorableWhitespace(self, ch):
0305         '''abstract bool QXmlContentHandler.ignorableWhitespace(str ch)'''
0306         return bool()
0307     def characters(self, ch):
0308         '''abstract bool QXmlContentHandler.characters(str ch)'''
0309         return bool()
0310     def endElement(self, namespaceURI, localName, qName):
0311         '''abstract bool QXmlContentHandler.endElement(str namespaceURI, str localName, str qName)'''
0312         return bool()
0313     def startElement(self, namespaceURI, localName, qName, atts):
0314         '''abstract bool QXmlContentHandler.startElement(str namespaceURI, str localName, str qName, QXmlAttributes atts)'''
0315         return bool()
0316     def endPrefixMapping(self, prefix):
0317         '''abstract bool QXmlContentHandler.endPrefixMapping(str prefix)'''
0318         return bool()
0319     def startPrefixMapping(self, prefix, uri):
0320         '''abstract bool QXmlContentHandler.startPrefixMapping(str prefix, str uri)'''
0321         return bool()
0322     def endDocument(self):
0323         '''abstract bool QXmlContentHandler.endDocument()'''
0324         return bool()
0325     def startDocument(self):
0326         '''abstract bool QXmlContentHandler.startDocument()'''
0327         return bool()
0328     def setDocumentLocator(self, locator):
0329         '''abstract void QXmlContentHandler.setDocumentLocator(QXmlLocator locator)'''
0330 
0331 
0332 class QXmlErrorHandler():
0333     """"""
0334     def __init__(self):
0335         '''void QXmlErrorHandler.__init__()'''
0336     def __init__(self):
0337         '''QXmlErrorHandler QXmlErrorHandler.__init__()'''
0338         return QXmlErrorHandler()
0339     def errorString(self):
0340         '''abstract str QXmlErrorHandler.errorString()'''
0341         return str()
0342     def fatalError(self, exception):
0343         '''abstract bool QXmlErrorHandler.fatalError(QXmlParseException exception)'''
0344         return bool()
0345     def error(self, exception):
0346         '''abstract bool QXmlErrorHandler.error(QXmlParseException exception)'''
0347         return bool()
0348     def warning(self, exception):
0349         '''abstract bool QXmlErrorHandler.warning(QXmlParseException exception)'''
0350         return bool()
0351 
0352 
0353 class QXmlDTDHandler():
0354     """"""
0355     def __init__(self):
0356         '''void QXmlDTDHandler.__init__()'''
0357     def __init__(self):
0358         '''QXmlDTDHandler QXmlDTDHandler.__init__()'''
0359         return QXmlDTDHandler()
0360     def errorString(self):
0361         '''abstract str QXmlDTDHandler.errorString()'''
0362         return str()
0363     def unparsedEntityDecl(self, name, publicId, systemId, notationName):
0364         '''abstract bool QXmlDTDHandler.unparsedEntityDecl(str name, str publicId, str systemId, str notationName)'''
0365         return bool()
0366     def notationDecl(self, name, publicId, systemId):
0367         '''abstract bool QXmlDTDHandler.notationDecl(str name, str publicId, str systemId)'''
0368         return bool()
0369 
0370 
0371 class QXmlEntityResolver():
0372     """"""
0373     def __init__(self):
0374         '''void QXmlEntityResolver.__init__()'''
0375     def __init__(self):
0376         '''QXmlEntityResolver QXmlEntityResolver.__init__()'''
0377         return QXmlEntityResolver()
0378     def errorString(self):
0379         '''abstract str QXmlEntityResolver.errorString()'''
0380         return str()
0381     def resolveEntity(self, publicId, systemId, ret):
0382         '''abstract bool QXmlEntityResolver.resolveEntity(str publicId, str systemId, QXmlInputSource ret)'''
0383         return bool()
0384 
0385 
0386 class QXmlLexicalHandler():
0387     """"""
0388     def __init__(self):
0389         '''void QXmlLexicalHandler.__init__()'''
0390     def __init__(self):
0391         '''QXmlLexicalHandler QXmlLexicalHandler.__init__()'''
0392         return QXmlLexicalHandler()
0393     def errorString(self):
0394         '''abstract str QXmlLexicalHandler.errorString()'''
0395         return str()
0396     def comment(self, ch):
0397         '''abstract bool QXmlLexicalHandler.comment(str ch)'''
0398         return bool()
0399     def endCDATA(self):
0400         '''abstract bool QXmlLexicalHandler.endCDATA()'''
0401         return bool()
0402     def startCDATA(self):
0403         '''abstract bool QXmlLexicalHandler.startCDATA()'''
0404         return bool()
0405     def endEntity(self, name):
0406         '''abstract bool QXmlLexicalHandler.endEntity(str name)'''
0407         return bool()
0408     def startEntity(self, name):
0409         '''abstract bool QXmlLexicalHandler.startEntity(str name)'''
0410         return bool()
0411     def endDTD(self):
0412         '''abstract bool QXmlLexicalHandler.endDTD()'''
0413         return bool()
0414     def startDTD(self, name, publicId, systemId):
0415         '''abstract bool QXmlLexicalHandler.startDTD(str name, str publicId, str systemId)'''
0416         return bool()
0417 
0418 
0419 class QXmlDeclHandler():
0420     """"""
0421     def __init__(self):
0422         '''void QXmlDeclHandler.__init__()'''
0423     def __init__(self):
0424         '''QXmlDeclHandler QXmlDeclHandler.__init__()'''
0425         return QXmlDeclHandler()
0426     def errorString(self):
0427         '''abstract str QXmlDeclHandler.errorString()'''
0428         return str()
0429     def externalEntityDecl(self, name, publicId, systemId):
0430         '''abstract bool QXmlDeclHandler.externalEntityDecl(str name, str publicId, str systemId)'''
0431         return bool()
0432     def internalEntityDecl(self, name, value):
0433         '''abstract bool QXmlDeclHandler.internalEntityDecl(str name, str value)'''
0434         return bool()
0435     def attributeDecl(self, eName, aName, type, valueDefault, value):
0436         '''abstract bool QXmlDeclHandler.attributeDecl(str eName, str aName, str type, str valueDefault, str value)'''
0437         return bool()
0438 
0439 
0440 class QXmlDefaultHandler(QXmlContentHandler, QXmlErrorHandler, QXmlDTDHandler, QXmlEntityResolver, QXmlLexicalHandler, QXmlDeclHandler):
0441     """"""
0442     def __init__(self):
0443         '''void QXmlDefaultHandler.__init__()'''
0444     def errorString(self):
0445         '''str QXmlDefaultHandler.errorString()'''
0446         return str()
0447     def externalEntityDecl(self, name, publicId, systemId):
0448         '''bool QXmlDefaultHandler.externalEntityDecl(str name, str publicId, str systemId)'''
0449         return bool()
0450     def internalEntityDecl(self, name, value):
0451         '''bool QXmlDefaultHandler.internalEntityDecl(str name, str value)'''
0452         return bool()
0453     def attributeDecl(self, eName, aName, type, valueDefault, value):
0454         '''bool QXmlDefaultHandler.attributeDecl(str eName, str aName, str type, str valueDefault, str value)'''
0455         return bool()
0456     def comment(self, ch):
0457         '''bool QXmlDefaultHandler.comment(str ch)'''
0458         return bool()
0459     def endCDATA(self):
0460         '''bool QXmlDefaultHandler.endCDATA()'''
0461         return bool()
0462     def startCDATA(self):
0463         '''bool QXmlDefaultHandler.startCDATA()'''
0464         return bool()
0465     def endEntity(self, name):
0466         '''bool QXmlDefaultHandler.endEntity(str name)'''
0467         return bool()
0468     def startEntity(self, name):
0469         '''bool QXmlDefaultHandler.startEntity(str name)'''
0470         return bool()
0471     def endDTD(self):
0472         '''bool QXmlDefaultHandler.endDTD()'''
0473         return bool()
0474     def startDTD(self, name, publicId, systemId):
0475         '''bool QXmlDefaultHandler.startDTD(str name, str publicId, str systemId)'''
0476         return bool()
0477     def resolveEntity(self, publicId, systemId, ret):
0478         '''bool QXmlDefaultHandler.resolveEntity(str publicId, str systemId, QXmlInputSource ret)'''
0479         return bool()
0480     def unparsedEntityDecl(self, name, publicId, systemId, notationName):
0481         '''bool QXmlDefaultHandler.unparsedEntityDecl(str name, str publicId, str systemId, str notationName)'''
0482         return bool()
0483     def notationDecl(self, name, publicId, systemId):
0484         '''bool QXmlDefaultHandler.notationDecl(str name, str publicId, str systemId)'''
0485         return bool()
0486     def fatalError(self, exception):
0487         '''bool QXmlDefaultHandler.fatalError(QXmlParseException exception)'''
0488         return bool()
0489     def error(self, exception):
0490         '''bool QXmlDefaultHandler.error(QXmlParseException exception)'''
0491         return bool()
0492     def warning(self, exception):
0493         '''bool QXmlDefaultHandler.warning(QXmlParseException exception)'''
0494         return bool()
0495     def skippedEntity(self, name):
0496         '''bool QXmlDefaultHandler.skippedEntity(str name)'''
0497         return bool()
0498     def processingInstruction(self, target, data):
0499         '''bool QXmlDefaultHandler.processingInstruction(str target, str data)'''
0500         return bool()
0501     def ignorableWhitespace(self, ch):
0502         '''bool QXmlDefaultHandler.ignorableWhitespace(str ch)'''
0503         return bool()
0504     def characters(self, ch):
0505         '''bool QXmlDefaultHandler.characters(str ch)'''
0506         return bool()
0507     def endElement(self, namespaceURI, localName, qName):
0508         '''bool QXmlDefaultHandler.endElement(str namespaceURI, str localName, str qName)'''
0509         return bool()
0510     def startElement(self, namespaceURI, localName, qName, atts):
0511         '''bool QXmlDefaultHandler.startElement(str namespaceURI, str localName, str qName, QXmlAttributes atts)'''
0512         return bool()
0513     def endPrefixMapping(self, prefix):
0514         '''bool QXmlDefaultHandler.endPrefixMapping(str prefix)'''
0515         return bool()
0516     def startPrefixMapping(self, prefix, uri):
0517         '''bool QXmlDefaultHandler.startPrefixMapping(str prefix, str uri)'''
0518         return bool()
0519     def endDocument(self):
0520         '''bool QXmlDefaultHandler.endDocument()'''
0521         return bool()
0522     def startDocument(self):
0523         '''bool QXmlDefaultHandler.startDocument()'''
0524         return bool()
0525     def setDocumentLocator(self, locator):
0526         '''void QXmlDefaultHandler.setDocumentLocator(QXmlLocator locator)'''
0527 
0528 
0529 class QDomImplementation():
0530     """"""
0531     # Enum QDomImplementation.InvalidDataPolicy
0532     AcceptInvalidChars = 0
0533     DropInvalidChars = 0
0534     ReturnNullNode = 0
0535 
0536     def __init__(self):
0537         '''void QDomImplementation.__init__()'''
0538     def __init__(self):
0539         '''QDomImplementation QDomImplementation.__init__()'''
0540         return QDomImplementation()
0541     def isNull(self):
0542         '''bool QDomImplementation.isNull()'''
0543         return bool()
0544     def setInvalidDataPolicy(self, policy):
0545         '''static void QDomImplementation.setInvalidDataPolicy(QDomImplementation.InvalidDataPolicy policy)'''
0546     def invalidDataPolicy(self):
0547         '''static QDomImplementation.InvalidDataPolicy QDomImplementation.invalidDataPolicy()'''
0548         return QDomImplementation.InvalidDataPolicy()
0549     def createDocument(self, nsURI, qName, doctype):
0550         '''QDomDocument QDomImplementation.createDocument(str nsURI, str qName, QDomDocumentType doctype)'''
0551         return QDomDocument()
0552     def createDocumentType(self, qName, publicId, systemId):
0553         '''QDomDocumentType QDomImplementation.createDocumentType(str qName, str publicId, str systemId)'''
0554         return QDomDocumentType()
0555     def hasFeature(self, feature, version):
0556         '''bool QDomImplementation.hasFeature(str feature, str version)'''
0557         return bool()
0558     def __ne__(self):
0559         '''QDomImplementation QDomImplementation.__ne__()'''
0560         return QDomImplementation()
0561     def __eq__(self):
0562         '''QDomImplementation QDomImplementation.__eq__()'''
0563         return QDomImplementation()
0564 
0565 
0566 class QDomNode():
0567     """"""
0568     # Enum QDomNode.EncodingPolicy
0569     EncodingFromDocument = 0
0570     EncodingFromTextStream = 0
0571 
0572     # Enum QDomNode.NodeType
0573     ElementNode = 0
0574     AttributeNode = 0
0575     TextNode = 0
0576     CDATASectionNode = 0
0577     EntityReferenceNode = 0
0578     EntityNode = 0
0579     ProcessingInstructionNode = 0
0580     CommentNode = 0
0581     DocumentNode = 0
0582     DocumentTypeNode = 0
0583     DocumentFragmentNode = 0
0584     NotationNode = 0
0585     BaseNode = 0
0586     CharacterDataNode = 0
0587 
0588     def __init__(self):
0589         '''void QDomNode.__init__()'''
0590     def __init__(self):
0591         '''QDomNode QDomNode.__init__()'''
0592         return QDomNode()
0593     def columnNumber(self):
0594         '''int QDomNode.columnNumber()'''
0595         return int()
0596     def lineNumber(self):
0597         '''int QDomNode.lineNumber()'''
0598         return int()
0599     def nextSiblingElement(self, taName = str()):
0600         '''QDomElement QDomNode.nextSiblingElement(str taName = str())'''
0601         return QDomElement()
0602     def previousSiblingElement(self, tagName = str()):
0603         '''QDomElement QDomNode.previousSiblingElement(str tagName = str())'''
0604         return QDomElement()
0605     def lastChildElement(self, tagName = str()):
0606         '''QDomElement QDomNode.lastChildElement(str tagName = str())'''
0607         return QDomElement()
0608     def firstChildElement(self, tagName = str()):
0609         '''QDomElement QDomNode.firstChildElement(str tagName = str())'''
0610         return QDomElement()
0611     def save(self):
0612         '''QDomNode.EncodingPolicy QDomNode.save()'''
0613         return QDomNode.EncodingPolicy()
0614     def toComment(self):
0615         '''QDomComment QDomNode.toComment()'''
0616         return QDomComment()
0617     def toCharacterData(self):
0618         '''QDomCharacterData QDomNode.toCharacterData()'''
0619         return QDomCharacterData()
0620     def toProcessingInstruction(self):
0621         '''QDomProcessingInstruction QDomNode.toProcessingInstruction()'''
0622         return QDomProcessingInstruction()
0623     def toNotation(self):
0624         '''QDomNotation QDomNode.toNotation()'''
0625         return QDomNotation()
0626     def toEntity(self):
0627         '''QDomEntity QDomNode.toEntity()'''
0628         return QDomEntity()
0629     def toText(self):
0630         '''QDomText QDomNode.toText()'''
0631         return QDomText()
0632     def toEntityReference(self):
0633         '''QDomEntityReference QDomNode.toEntityReference()'''
0634         return QDomEntityReference()
0635     def toElement(self):
0636         '''QDomElement QDomNode.toElement()'''
0637         return QDomElement()
0638     def toDocumentType(self):
0639         '''QDomDocumentType QDomNode.toDocumentType()'''
0640         return QDomDocumentType()
0641     def toDocument(self):
0642         '''QDomDocument QDomNode.toDocument()'''
0643         return QDomDocument()
0644     def toDocumentFragment(self):
0645         '''QDomDocumentFragment QDomNode.toDocumentFragment()'''
0646         return QDomDocumentFragment()
0647     def toCDATASection(self):
0648         '''QDomCDATASection QDomNode.toCDATASection()'''
0649         return QDomCDATASection()
0650     def toAttr(self):
0651         '''QDomAttr QDomNode.toAttr()'''
0652         return QDomAttr()
0653     def clear(self):
0654         '''void QDomNode.clear()'''
0655     def isNull(self):
0656         '''bool QDomNode.isNull()'''
0657         return bool()
0658     def namedItem(self, name):
0659         '''QDomNode QDomNode.namedItem(str name)'''
0660         return QDomNode()
0661     def isComment(self):
0662         '''bool QDomNode.isComment()'''
0663         return bool()
0664     def isCharacterData(self):
0665         '''bool QDomNode.isCharacterData()'''
0666         return bool()
0667     def isProcessingInstruction(self):
0668         '''bool QDomNode.isProcessingInstruction()'''
0669         return bool()
0670     def isNotation(self):
0671         '''bool QDomNode.isNotation()'''
0672         return bool()
0673     def isEntity(self):
0674         '''bool QDomNode.isEntity()'''
0675         return bool()
0676     def isText(self):
0677         '''bool QDomNode.isText()'''
0678         return bool()
0679     def isEntityReference(self):
0680         '''bool QDomNode.isEntityReference()'''
0681         return bool()
0682     def isElement(self):
0683         '''bool QDomNode.isElement()'''
0684         return bool()
0685     def isDocumentType(self):
0686         '''bool QDomNode.isDocumentType()'''
0687         return bool()
0688     def isDocument(self):
0689         '''bool QDomNode.isDocument()'''
0690         return bool()
0691     def isDocumentFragment(self):
0692         '''bool QDomNode.isDocumentFragment()'''
0693         return bool()
0694     def isCDATASection(self):
0695         '''bool QDomNode.isCDATASection()'''
0696         return bool()
0697     def isAttr(self):
0698         '''bool QDomNode.isAttr()'''
0699         return bool()
0700     def setPrefix(self, pre):
0701         '''void QDomNode.setPrefix(str pre)'''
0702     def prefix(self):
0703         '''str QDomNode.prefix()'''
0704         return str()
0705     def setNodeValue(self):
0706         '''str QDomNode.setNodeValue()'''
0707         return str()
0708     def nodeValue(self):
0709         '''str QDomNode.nodeValue()'''
0710         return str()
0711     def hasAttributes(self):
0712         '''bool QDomNode.hasAttributes()'''
0713         return bool()
0714     def localName(self):
0715         '''str QDomNode.localName()'''
0716         return str()
0717     def namespaceURI(self):
0718         '''str QDomNode.namespaceURI()'''
0719         return str()
0720     def ownerDocument(self):
0721         '''QDomDocument QDomNode.ownerDocument()'''
0722         return QDomDocument()
0723     def attributes(self):
0724         '''QDomNamedNodeMap QDomNode.attributes()'''
0725         return QDomNamedNodeMap()
0726     def nextSibling(self):
0727         '''QDomNode QDomNode.nextSibling()'''
0728         return QDomNode()
0729     def previousSibling(self):
0730         '''QDomNode QDomNode.previousSibling()'''
0731         return QDomNode()
0732     def lastChild(self):
0733         '''QDomNode QDomNode.lastChild()'''
0734         return QDomNode()
0735     def firstChild(self):
0736         '''QDomNode QDomNode.firstChild()'''
0737         return QDomNode()
0738     def childNodes(self):
0739         '''QDomNodeList QDomNode.childNodes()'''
0740         return QDomNodeList()
0741     def parentNode(self):
0742         '''QDomNode QDomNode.parentNode()'''
0743         return QDomNode()
0744     def nodeType(self):
0745         '''QDomNode.NodeType QDomNode.nodeType()'''
0746         return QDomNode.NodeType()
0747     def nodeName(self):
0748         '''str QDomNode.nodeName()'''
0749         return str()
0750     def isSupported(self, feature, version):
0751         '''bool QDomNode.isSupported(str feature, str version)'''
0752         return bool()
0753     def normalize(self):
0754         '''void QDomNode.normalize()'''
0755     def cloneNode(self, deep = True):
0756         '''QDomNode QDomNode.cloneNode(bool deep = True)'''
0757         return QDomNode()
0758     def hasChildNodes(self):
0759         '''bool QDomNode.hasChildNodes()'''
0760         return bool()
0761     def appendChild(self, newChild):
0762         '''QDomNode QDomNode.appendChild(QDomNode newChild)'''
0763         return QDomNode()
0764     def removeChild(self, oldChild):
0765         '''QDomNode QDomNode.removeChild(QDomNode oldChild)'''
0766         return QDomNode()
0767     def replaceChild(self, newChild, oldChild):
0768         '''QDomNode QDomNode.replaceChild(QDomNode newChild, QDomNode oldChild)'''
0769         return QDomNode()
0770     def insertAfter(self, newChild, refChild):
0771         '''QDomNode QDomNode.insertAfter(QDomNode newChild, QDomNode refChild)'''
0772         return QDomNode()
0773     def insertBefore(self, newChild, refChild):
0774         '''QDomNode QDomNode.insertBefore(QDomNode newChild, QDomNode refChild)'''
0775         return QDomNode()
0776     def __ne__(self):
0777         '''QDomNode QDomNode.__ne__()'''
0778         return QDomNode()
0779     def __eq__(self):
0780         '''QDomNode QDomNode.__eq__()'''
0781         return QDomNode()
0782 
0783 
0784 class QDomNodeList():
0785     """"""
0786     def __init__(self):
0787         '''void QDomNodeList.__init__()'''
0788     def __init__(self):
0789         '''QDomNodeList QDomNodeList.__init__()'''
0790         return QDomNodeList()
0791     def isEmpty(self):
0792         '''bool QDomNodeList.isEmpty()'''
0793         return bool()
0794     def size(self):
0795         '''int QDomNodeList.size()'''
0796         return int()
0797     def __len__(self):
0798         ''' QDomNodeList.__len__()'''
0799         return ()
0800     def count(self):
0801         '''int QDomNodeList.count()'''
0802         return int()
0803     def length(self):
0804         '''int QDomNodeList.length()'''
0805         return int()
0806     def at(self, index):
0807         '''QDomNode QDomNodeList.at(int index)'''
0808         return QDomNode()
0809     def item(self, index):
0810         '''QDomNode QDomNodeList.item(int index)'''
0811         return QDomNode()
0812     def __ne__(self):
0813         '''QDomNodeList QDomNodeList.__ne__()'''
0814         return QDomNodeList()
0815     def __eq__(self):
0816         '''QDomNodeList QDomNodeList.__eq__()'''
0817         return QDomNodeList()
0818 
0819 
0820 class QDomDocumentType(QDomNode):
0821     """"""
0822     def __init__(self):
0823         '''void QDomDocumentType.__init__()'''
0824     def __init__(self, x):
0825         '''void QDomDocumentType.__init__(QDomDocumentType x)'''
0826     def nodeType(self):
0827         '''QDomNode.NodeType QDomDocumentType.nodeType()'''
0828         return QDomNode.NodeType()
0829     def internalSubset(self):
0830         '''str QDomDocumentType.internalSubset()'''
0831         return str()
0832     def systemId(self):
0833         '''str QDomDocumentType.systemId()'''
0834         return str()
0835     def publicId(self):
0836         '''str QDomDocumentType.publicId()'''
0837         return str()
0838     def notations(self):
0839         '''QDomNamedNodeMap QDomDocumentType.notations()'''
0840         return QDomNamedNodeMap()
0841     def entities(self):
0842         '''QDomNamedNodeMap QDomDocumentType.entities()'''
0843         return QDomNamedNodeMap()
0844     def name(self):
0845         '''str QDomDocumentType.name()'''
0846         return str()
0847 
0848 
0849 class QDomDocument(QDomNode):
0850     """"""
0851     def __init__(self):
0852         '''void QDomDocument.__init__()'''
0853     def __init__(self, name):
0854         '''void QDomDocument.__init__(str name)'''
0855     def __init__(self, doctype):
0856         '''void QDomDocument.__init__(QDomDocumentType doctype)'''
0857     def __init__(self, x):
0858         '''void QDomDocument.__init__(QDomDocument x)'''
0859     def toByteArray(self, indent = 1):
0860         '''QByteArray QDomDocument.toByteArray(int indent = 1)'''
0861         return QByteArray()
0862     def toString(self, indent = 1):
0863         '''str QDomDocument.toString(int indent = 1)'''
0864         return str()
0865     def setContent(self, text, namespaceProcessing, errorMsg, errorLine, errorColumn):
0866         '''bool QDomDocument.setContent(QByteArray text, bool namespaceProcessing, str errorMsg, int errorLine, int errorColumn)'''
0867         return bool()
0868     def setContent(self, text, namespaceProcessing, errorMsg, errorLine, errorColumn):
0869         '''bool QDomDocument.setContent(str text, bool namespaceProcessing, str errorMsg, int errorLine, int errorColumn)'''
0870         return bool()
0871     def setContent(self, dev, namespaceProcessing, errorMsg, errorLine, errorColumn):
0872         '''bool QDomDocument.setContent(QIODevice dev, bool namespaceProcessing, str errorMsg, int errorLine, int errorColumn)'''
0873         return bool()
0874     def setContent(self, source, namespaceProcessing, errorMsg, errorLine, errorColumn):
0875         '''bool QDomDocument.setContent(QXmlInputSource source, bool namespaceProcessing, str errorMsg, int errorLine, int errorColumn)'''
0876         return bool()
0877     def setContent(self, text, errorMsg, errorLine, errorColumn):
0878         '''bool QDomDocument.setContent(QByteArray text, str errorMsg, int errorLine, int errorColumn)'''
0879         return bool()
0880     def setContent(self, text, errorMsg, errorLine, errorColumn):
0881         '''bool QDomDocument.setContent(str text, str errorMsg, int errorLine, int errorColumn)'''
0882         return bool()
0883     def setContent(self, dev, errorMsg, errorLine, errorColumn):
0884         '''bool QDomDocument.setContent(QIODevice dev, str errorMsg, int errorLine, int errorColumn)'''
0885         return bool()
0886     def setContent(self, source, reader, errorMsg, errorLine, errorColumn):
0887         '''bool QDomDocument.setContent(QXmlInputSource source, QXmlReader reader, str errorMsg, int errorLine, int errorColumn)'''
0888         return bool()
0889     def nodeType(self):
0890         '''QDomNode.NodeType QDomDocument.nodeType()'''
0891         return QDomNode.NodeType()
0892     def documentElement(self):
0893         '''QDomElement QDomDocument.documentElement()'''
0894         return QDomElement()
0895     def implementation(self):
0896         '''QDomImplementation QDomDocument.implementation()'''
0897         return QDomImplementation()
0898     def doctype(self):
0899         '''QDomDocumentType QDomDocument.doctype()'''
0900         return QDomDocumentType()
0901     def elementById(self, elementId):
0902         '''QDomElement QDomDocument.elementById(str elementId)'''
0903         return QDomElement()
0904     def elementsByTagNameNS(self, nsURI, localName):
0905         '''QDomNodeList QDomDocument.elementsByTagNameNS(str nsURI, str localName)'''
0906         return QDomNodeList()
0907     def createAttributeNS(self, nsURI, qName):
0908         '''QDomAttr QDomDocument.createAttributeNS(str nsURI, str qName)'''
0909         return QDomAttr()
0910     def createElementNS(self, nsURI, qName):
0911         '''QDomElement QDomDocument.createElementNS(str nsURI, str qName)'''
0912         return QDomElement()
0913     def importNode(self, importedNode, deep):
0914         '''QDomNode QDomDocument.importNode(QDomNode importedNode, bool deep)'''
0915         return QDomNode()
0916     def elementsByTagName(self, tagname):
0917         '''QDomNodeList QDomDocument.elementsByTagName(str tagname)'''
0918         return QDomNodeList()
0919     def createEntityReference(self, name):
0920         '''QDomEntityReference QDomDocument.createEntityReference(str name)'''
0921         return QDomEntityReference()
0922     def createAttribute(self, name):
0923         '''QDomAttr QDomDocument.createAttribute(str name)'''
0924         return QDomAttr()
0925     def createProcessingInstruction(self, target, data):
0926         '''QDomProcessingInstruction QDomDocument.createProcessingInstruction(str target, str data)'''
0927         return QDomProcessingInstruction()
0928     def createCDATASection(self, data):
0929         '''QDomCDATASection QDomDocument.createCDATASection(str data)'''
0930         return QDomCDATASection()
0931     def createComment(self, data):
0932         '''QDomComment QDomDocument.createComment(str data)'''
0933         return QDomComment()
0934     def createTextNode(self, data):
0935         '''QDomText QDomDocument.createTextNode(str data)'''
0936         return QDomText()
0937     def createDocumentFragment(self):
0938         '''QDomDocumentFragment QDomDocument.createDocumentFragment()'''
0939         return QDomDocumentFragment()
0940     def createElement(self, tagName):
0941         '''QDomElement QDomDocument.createElement(str tagName)'''
0942         return QDomElement()
0943 
0944 
0945 class QDomNamedNodeMap():
0946     """"""
0947     def __init__(self):
0948         '''void QDomNamedNodeMap.__init__()'''
0949     def __init__(self):
0950         '''QDomNamedNodeMap QDomNamedNodeMap.__init__()'''
0951         return QDomNamedNodeMap()
0952     def contains(self, name):
0953         '''bool QDomNamedNodeMap.contains(str name)'''
0954         return bool()
0955     def isEmpty(self):
0956         '''bool QDomNamedNodeMap.isEmpty()'''
0957         return bool()
0958     def size(self):
0959         '''int QDomNamedNodeMap.size()'''
0960         return int()
0961     def __len__(self):
0962         ''' QDomNamedNodeMap.__len__()'''
0963         return ()
0964     def count(self):
0965         '''int QDomNamedNodeMap.count()'''
0966         return int()
0967     def length(self):
0968         '''int QDomNamedNodeMap.length()'''
0969         return int()
0970     def removeNamedItemNS(self, nsURI, localName):
0971         '''QDomNode QDomNamedNodeMap.removeNamedItemNS(str nsURI, str localName)'''
0972         return QDomNode()
0973     def setNamedItemNS(self, newNode):
0974         '''QDomNode QDomNamedNodeMap.setNamedItemNS(QDomNode newNode)'''
0975         return QDomNode()
0976     def namedItemNS(self, nsURI, localName):
0977         '''QDomNode QDomNamedNodeMap.namedItemNS(str nsURI, str localName)'''
0978         return QDomNode()
0979     def item(self, index):
0980         '''QDomNode QDomNamedNodeMap.item(int index)'''
0981         return QDomNode()
0982     def removeNamedItem(self, name):
0983         '''QDomNode QDomNamedNodeMap.removeNamedItem(str name)'''
0984         return QDomNode()
0985     def setNamedItem(self, newNode):
0986         '''QDomNode QDomNamedNodeMap.setNamedItem(QDomNode newNode)'''
0987         return QDomNode()
0988     def namedItem(self, name):
0989         '''QDomNode QDomNamedNodeMap.namedItem(str name)'''
0990         return QDomNode()
0991     def __ne__(self):
0992         '''QDomNamedNodeMap QDomNamedNodeMap.__ne__()'''
0993         return QDomNamedNodeMap()
0994     def __eq__(self):
0995         '''QDomNamedNodeMap QDomNamedNodeMap.__eq__()'''
0996         return QDomNamedNodeMap()
0997 
0998 
0999 class QDomDocumentFragment(QDomNode):
1000     """"""
1001     def __init__(self):
1002         '''void QDomDocumentFragment.__init__()'''
1003     def __init__(self, x):
1004         '''void QDomDocumentFragment.__init__(QDomDocumentFragment x)'''
1005     def nodeType(self):
1006         '''QDomNode.NodeType QDomDocumentFragment.nodeType()'''
1007         return QDomNode.NodeType()
1008 
1009 
1010 class QDomCharacterData(QDomNode):
1011     """"""
1012     def __init__(self):
1013         '''void QDomCharacterData.__init__()'''
1014     def __init__(self, x):
1015         '''void QDomCharacterData.__init__(QDomCharacterData x)'''
1016     def nodeType(self):
1017         '''QDomNode.NodeType QDomCharacterData.nodeType()'''
1018         return QDomNode.NodeType()
1019     def setData(self):
1020         '''str QDomCharacterData.setData()'''
1021         return str()
1022     def data(self):
1023         '''str QDomCharacterData.data()'''
1024         return str()
1025     def length(self):
1026         '''int QDomCharacterData.length()'''
1027         return int()
1028     def replaceData(self, offset, count, arg):
1029         '''void QDomCharacterData.replaceData(int offset, int count, str arg)'''
1030     def deleteData(self, offset, count):
1031         '''void QDomCharacterData.deleteData(int offset, int count)'''
1032     def insertData(self, offset, arg):
1033         '''void QDomCharacterData.insertData(int offset, str arg)'''
1034     def appendData(self, arg):
1035         '''void QDomCharacterData.appendData(str arg)'''
1036     def substringData(self, offset, count):
1037         '''str QDomCharacterData.substringData(int offset, int count)'''
1038         return str()
1039 
1040 
1041 class QDomAttr(QDomNode):
1042     """"""
1043     def __init__(self):
1044         '''void QDomAttr.__init__()'''
1045     def __init__(self, x):
1046         '''void QDomAttr.__init__(QDomAttr x)'''
1047     def nodeType(self):
1048         '''QDomNode.NodeType QDomAttr.nodeType()'''
1049         return QDomNode.NodeType()
1050     def setValue(self):
1051         '''str QDomAttr.setValue()'''
1052         return str()
1053     def value(self):
1054         '''str QDomAttr.value()'''
1055         return str()
1056     def ownerElement(self):
1057         '''QDomElement QDomAttr.ownerElement()'''
1058         return QDomElement()
1059     def specified(self):
1060         '''bool QDomAttr.specified()'''
1061         return bool()
1062     def name(self):
1063         '''str QDomAttr.name()'''
1064         return str()
1065 
1066 
1067 class QDomElement(QDomNode):
1068     """"""
1069     def __init__(self):
1070         '''void QDomElement.__init__()'''
1071     def __init__(self, x):
1072         '''void QDomElement.__init__(QDomElement x)'''
1073     def text(self):
1074         '''str QDomElement.text()'''
1075         return str()
1076     def nodeType(self):
1077         '''QDomNode.NodeType QDomElement.nodeType()'''
1078         return QDomNode.NodeType()
1079     def attributes(self):
1080         '''QDomNamedNodeMap QDomElement.attributes()'''
1081         return QDomNamedNodeMap()
1082     def setTagName(self, name):
1083         '''void QDomElement.setTagName(str name)'''
1084     def tagName(self):
1085         '''str QDomElement.tagName()'''
1086         return str()
1087     def hasAttributeNS(self, nsURI, localName):
1088         '''bool QDomElement.hasAttributeNS(str nsURI, str localName)'''
1089         return bool()
1090     def elementsByTagNameNS(self, nsURI, localName):
1091         '''QDomNodeList QDomElement.elementsByTagNameNS(str nsURI, str localName)'''
1092         return QDomNodeList()
1093     def setAttributeNodeNS(self, newAttr):
1094         '''QDomAttr QDomElement.setAttributeNodeNS(QDomAttr newAttr)'''
1095         return QDomAttr()
1096     def attributeNodeNS(self, nsURI, localName):
1097         '''QDomAttr QDomElement.attributeNodeNS(str nsURI, str localName)'''
1098         return QDomAttr()
1099     def removeAttributeNS(self, nsURI, localName):
1100         '''void QDomElement.removeAttributeNS(str nsURI, str localName)'''
1101     def setAttributeNS(self, nsURI, qName, value):
1102         '''void QDomElement.setAttributeNS(str nsURI, str qName, str value)'''
1103     def setAttributeNS(self, nsURI, qName, value):
1104         '''void QDomElement.setAttributeNS(str nsURI, str qName, int value)'''
1105     def setAttributeNS(self, nsURI, qName, value):
1106         '''void QDomElement.setAttributeNS(str nsURI, str qName, int value)'''
1107     def setAttributeNS(self, nsURI, qName, value):
1108         '''void QDomElement.setAttributeNS(str nsURI, str qName, float value)'''
1109     def setAttributeNS(self, nsURI, qName, value):
1110         '''void QDomElement.setAttributeNS(str nsURI, str qName, int value)'''
1111     def attributeNS(self, nsURI, localName, defaultValue = str()):
1112         '''str QDomElement.attributeNS(str nsURI, str localName, str defaultValue = str())'''
1113         return str()
1114     def hasAttribute(self, name):
1115         '''bool QDomElement.hasAttribute(str name)'''
1116         return bool()
1117     def elementsByTagName(self, tagname):
1118         '''QDomNodeList QDomElement.elementsByTagName(str tagname)'''
1119         return QDomNodeList()
1120     def removeAttributeNode(self, oldAttr):
1121         '''QDomAttr QDomElement.removeAttributeNode(QDomAttr oldAttr)'''
1122         return QDomAttr()
1123     def setAttributeNode(self, newAttr):
1124         '''QDomAttr QDomElement.setAttributeNode(QDomAttr newAttr)'''
1125         return QDomAttr()
1126     def attributeNode(self, name):
1127         '''QDomAttr QDomElement.attributeNode(str name)'''
1128         return QDomAttr()
1129     def removeAttribute(self, name):
1130         '''void QDomElement.removeAttribute(str name)'''
1131     def setAttribute(self, name, value):
1132         '''void QDomElement.setAttribute(str name, str value)'''
1133     def setAttribute(self, name, value):
1134         '''void QDomElement.setAttribute(str name, int value)'''
1135     def setAttribute(self, name, value):
1136         '''void QDomElement.setAttribute(str name, int value)'''
1137     def setAttribute(self, name, value):
1138         '''void QDomElement.setAttribute(str name, float value)'''
1139     def setAttribute(self, name, value):
1140         '''void QDomElement.setAttribute(str name, int value)'''
1141     def attribute(self, name, defaultValue = str()):
1142         '''str QDomElement.attribute(str name, str defaultValue = str())'''
1143         return str()
1144 
1145 
1146 class QDomText(QDomCharacterData):
1147     """"""
1148     def __init__(self):
1149         '''void QDomText.__init__()'''
1150     def __init__(self, x):
1151         '''void QDomText.__init__(QDomText x)'''
1152     def nodeType(self):
1153         '''QDomNode.NodeType QDomText.nodeType()'''
1154         return QDomNode.NodeType()
1155     def splitText(self, offset):
1156         '''QDomText QDomText.splitText(int offset)'''
1157         return QDomText()
1158 
1159 
1160 class QDomComment(QDomCharacterData):
1161     """"""
1162     def __init__(self):
1163         '''void QDomComment.__init__()'''
1164     def __init__(self, x):
1165         '''void QDomComment.__init__(QDomComment x)'''
1166     def nodeType(self):
1167         '''QDomNode.NodeType QDomComment.nodeType()'''
1168         return QDomNode.NodeType()
1169 
1170 
1171 class QDomCDATASection(QDomText):
1172     """"""
1173     def __init__(self):
1174         '''void QDomCDATASection.__init__()'''
1175     def __init__(self, x):
1176         '''void QDomCDATASection.__init__(QDomCDATASection x)'''
1177     def nodeType(self):
1178         '''QDomNode.NodeType QDomCDATASection.nodeType()'''
1179         return QDomNode.NodeType()
1180 
1181 
1182 class QDomNotation(QDomNode):
1183     """"""
1184     def __init__(self):
1185         '''void QDomNotation.__init__()'''
1186     def __init__(self, x):
1187         '''void QDomNotation.__init__(QDomNotation x)'''
1188     def nodeType(self):
1189         '''QDomNode.NodeType QDomNotation.nodeType()'''
1190         return QDomNode.NodeType()
1191     def systemId(self):
1192         '''str QDomNotation.systemId()'''
1193         return str()
1194     def publicId(self):
1195         '''str QDomNotation.publicId()'''
1196         return str()
1197 
1198 
1199 class QDomEntity(QDomNode):
1200     """"""
1201     def __init__(self):
1202         '''void QDomEntity.__init__()'''
1203     def __init__(self, x):
1204         '''void QDomEntity.__init__(QDomEntity x)'''
1205     def nodeType(self):
1206         '''QDomNode.NodeType QDomEntity.nodeType()'''
1207         return QDomNode.NodeType()
1208     def notationName(self):
1209         '''str QDomEntity.notationName()'''
1210         return str()
1211     def systemId(self):
1212         '''str QDomEntity.systemId()'''
1213         return str()
1214     def publicId(self):
1215         '''str QDomEntity.publicId()'''
1216         return str()
1217 
1218 
1219 class QDomEntityReference(QDomNode):
1220     """"""
1221     def __init__(self):
1222         '''void QDomEntityReference.__init__()'''
1223     def __init__(self, x):
1224         '''void QDomEntityReference.__init__(QDomEntityReference x)'''
1225     def nodeType(self):
1226         '''QDomNode.NodeType QDomEntityReference.nodeType()'''
1227         return QDomNode.NodeType()
1228 
1229 
1230 class QDomProcessingInstruction(QDomNode):
1231     """"""
1232     def __init__(self):
1233         '''void QDomProcessingInstruction.__init__()'''
1234     def __init__(self, x):
1235         '''void QDomProcessingInstruction.__init__(QDomProcessingInstruction x)'''
1236     def nodeType(self):
1237         '''QDomNode.NodeType QDomProcessingInstruction.nodeType()'''
1238         return QDomNode.NodeType()
1239     def setData(self, d):
1240         '''void QDomProcessingInstruction.setData(str d)'''
1241     def data(self):
1242         '''str QDomProcessingInstruction.data()'''
1243         return str()
1244     def target(self):
1245         '''str QDomProcessingInstruction.target()'''
1246         return str()
1247 
1248