1class pyqtSignal():
2 def connect(self, targetSignal): pass
3 def emit(self, *args): pass
4from QtCore import *
5
6from QtWidgets import *
7
8import datetime
9
10class QXmlNamespaceSupport():
11    """"""
12    def __init__(self):
13        '''void QXmlNamespaceSupport.__init__()'''
14    def reset(self):
15        '''void QXmlNamespaceSupport.reset()'''
16    def popContext(self):
17        '''void QXmlNamespaceSupport.popContext()'''
18    def pushContext(self):
19        '''void QXmlNamespaceSupport.pushContext()'''
20    def prefixes(self):
21        '''list-of-str QXmlNamespaceSupport.prefixes()'''
22        return [str()]
23    def prefixes(self):
24        '''str QXmlNamespaceSupport.prefixes()'''
25        return str()
26    def processName(self):
27        '''str QXmlNamespaceSupport.processName()'''
28        return str()
29    def splitName(self):
30        '''str QXmlNamespaceSupport.splitName()'''
31        return str()
32    def uri(self):
33        '''str QXmlNamespaceSupport.uri()'''
34        return str()
35    def prefix(self):
36        '''str QXmlNamespaceSupport.prefix()'''
37        return str()
38    def setPrefix(self):
39        '''str QXmlNamespaceSupport.setPrefix()'''
40        return str()
41
42
43class QXmlAttributes():
44    """"""
45    def __init__(self):
46        '''void QXmlAttributes.__init__()'''
47    def __init__(self):
48        '''QXmlAttributes QXmlAttributes.__init__()'''
49        return QXmlAttributes()
50    def __len__(self):
51        ''' QXmlAttributes.__len__()'''
52        return ()
53    def count(self):
54        '''int QXmlAttributes.count()'''
55        return int()
56    def append(self, qName, uri, localPart, value):
57        '''void QXmlAttributes.append(str qName, str uri, str localPart, str value)'''
58    def clear(self):
59        '''void QXmlAttributes.clear()'''
60    def value(self, index):
61        '''str QXmlAttributes.value(int index)'''
62        return str()
63    def value(self, qName):
64        '''str QXmlAttributes.value(str qName)'''
65        return str()
66    def value(self, uri, localName):
67        '''str QXmlAttributes.value(str uri, str localName)'''
68        return str()
69    def type(self, index):
70        '''str QXmlAttributes.type(int index)'''
71        return str()
72    def type(self, qName):
73        '''str QXmlAttributes.type(str qName)'''
74        return str()
75    def type(self, uri, localName):
76        '''str QXmlAttributes.type(str uri, str localName)'''
77        return str()
78    def uri(self, index):
79        '''str QXmlAttributes.uri(int index)'''
80        return str()
81    def qName(self, index):
82        '''str QXmlAttributes.qName(int index)'''
83        return str()
84    def localName(self, index):
85        '''str QXmlAttributes.localName(int index)'''
86        return str()
87    def length(self):
88        '''int QXmlAttributes.length()'''
89        return int()
90    def index(self, qName):
91        '''int QXmlAttributes.index(str qName)'''
92        return int()
93    def index(self, uri, localPart):
94        '''int QXmlAttributes.index(str uri, str localPart)'''
95        return int()
96
97
98class QXmlInputSource():
99    """"""
100    EndOfData = None # int - member
101    EndOfDocument = None # int - member
102    def __init__(self):
103        '''void QXmlInputSource.__init__()'''
104    def __init__(self, dev):
105        '''void QXmlInputSource.__init__(QIODevice dev)'''
106    def __init__(self):
107        '''QXmlInputSource QXmlInputSource.__init__()'''
108        return QXmlInputSource()
109    def fromRawData(self, data, beginning = False):
110        '''str QXmlInputSource.fromRawData(QByteArray data, bool beginning = False)'''
111        return str()
112    def reset(self):
113        '''void QXmlInputSource.reset()'''
114    def next(self):
115        '''str QXmlInputSource.next()'''
116        return str()
117    def data(self):
118        '''str QXmlInputSource.data()'''
119        return str()
120    def fetchData(self):
121        '''void QXmlInputSource.fetchData()'''
122    def setData(self, dat):
123        '''void QXmlInputSource.setData(str dat)'''
124    def setData(self, dat):
125        '''void QXmlInputSource.setData(QByteArray dat)'''
126
127
128class QXmlParseException():
129    """"""
130    def __init__(self, name = str(), column = None, line = None, publicId = str(), systemId = str()):
131        '''void QXmlParseException.__init__(str name = str(), int column = -1, int line = -1, str publicId = str(), str systemId = str())'''
132    def __init__(self, other):
133        '''void QXmlParseException.__init__(QXmlParseException other)'''
134    def message(self):
135        '''str QXmlParseException.message()'''
136        return str()
137    def systemId(self):
138        '''str QXmlParseException.systemId()'''
139        return str()
140    def publicId(self):
141        '''str QXmlParseException.publicId()'''
142        return str()
143    def lineNumber(self):
144        '''int QXmlParseException.lineNumber()'''
145        return int()
146    def columnNumber(self):
147        '''int QXmlParseException.columnNumber()'''
148        return int()
149
150
151class QXmlReader():
152    """"""
153    def __init__(self):
154        '''void QXmlReader.__init__()'''
155    def __init__(self):
156        '''QXmlReader QXmlReader.__init__()'''
157        return QXmlReader()
158    def parse(self, input):
159        '''abstract bool QXmlReader.parse(QXmlInputSource input)'''
160        return bool()
161    def parse(self, input):
162        '''abstract bool QXmlReader.parse(QXmlInputSource input)'''
163        return bool()
164    def declHandler(self):
165        '''abstract QXmlDeclHandler QXmlReader.declHandler()'''
166        return QXmlDeclHandler()
167    def setDeclHandler(self, handler):
168        '''abstract void QXmlReader.setDeclHandler(QXmlDeclHandler handler)'''
169    def lexicalHandler(self):
170        '''abstract QXmlLexicalHandler QXmlReader.lexicalHandler()'''
171        return QXmlLexicalHandler()
172    def setLexicalHandler(self, handler):
173        '''abstract void QXmlReader.setLexicalHandler(QXmlLexicalHandler handler)'''
174    def errorHandler(self):
175        '''abstract QXmlErrorHandler QXmlReader.errorHandler()'''
176        return QXmlErrorHandler()
177    def setErrorHandler(self, handler):
178        '''abstract void QXmlReader.setErrorHandler(QXmlErrorHandler handler)'''
179    def contentHandler(self):
180        '''abstract QXmlContentHandler QXmlReader.contentHandler()'''
181        return QXmlContentHandler()
182    def setContentHandler(self, handler):
183        '''abstract void QXmlReader.setContentHandler(QXmlContentHandler handler)'''
184    def DTDHandler(self):
185        '''abstract QXmlDTDHandler QXmlReader.DTDHandler()'''
186        return QXmlDTDHandler()
187    def setDTDHandler(self, handler):
188        '''abstract void QXmlReader.setDTDHandler(QXmlDTDHandler handler)'''
189    def entityResolver(self):
190        '''abstract QXmlEntityResolver QXmlReader.entityResolver()'''
191        return QXmlEntityResolver()
192    def setEntityResolver(self, handler):
193        '''abstract void QXmlReader.setEntityResolver(QXmlEntityResolver handler)'''
194    def hasProperty(self, name):
195        '''abstract bool QXmlReader.hasProperty(str name)'''
196        return bool()
197    def setProperty(self, name, value):
198        '''abstract void QXmlReader.setProperty(str name, sip.voidptr value)'''
199    def property(self, name, ok):
200        '''abstract sip.voidptr QXmlReader.property(str name, bool ok)'''
201        return sip.voidptr()
202    def hasFeature(self, name):
203        '''abstract bool QXmlReader.hasFeature(str name)'''
204        return bool()
205    def setFeature(self, name, value):
206        '''abstract void QXmlReader.setFeature(str name, bool value)'''
207    def feature(self, name, ok):
208        '''abstract bool QXmlReader.feature(str name, bool ok)'''
209        return bool()
210
211
212class QXmlSimpleReader(QXmlReader):
213    """"""
214    def __init__(self):
215        '''void QXmlSimpleReader.__init__()'''
216    def parseContinue(self):
217        '''bool QXmlSimpleReader.parseContinue()'''
218        return bool()
219    def parse(self, input):
220        '''bool QXmlSimpleReader.parse(QXmlInputSource input)'''
221        return bool()
222    def parse(self, input, incremental):
223        '''bool QXmlSimpleReader.parse(QXmlInputSource input, bool incremental)'''
224        return bool()
225    def declHandler(self):
226        '''QXmlDeclHandler QXmlSimpleReader.declHandler()'''
227        return QXmlDeclHandler()
228    def setDeclHandler(self, handler):
229        '''void QXmlSimpleReader.setDeclHandler(QXmlDeclHandler handler)'''
230    def lexicalHandler(self):
231        '''QXmlLexicalHandler QXmlSimpleReader.lexicalHandler()'''
232        return QXmlLexicalHandler()
233    def setLexicalHandler(self, handler):
234        '''void QXmlSimpleReader.setLexicalHandler(QXmlLexicalHandler handler)'''
235    def errorHandler(self):
236        '''QXmlErrorHandler QXmlSimpleReader.errorHandler()'''
237        return QXmlErrorHandler()
238    def setErrorHandler(self, handler):
239        '''void QXmlSimpleReader.setErrorHandler(QXmlErrorHandler handler)'''
240    def contentHandler(self):
241        '''QXmlContentHandler QXmlSimpleReader.contentHandler()'''
242        return QXmlContentHandler()
243    def setContentHandler(self, handler):
244        '''void QXmlSimpleReader.setContentHandler(QXmlContentHandler handler)'''
245    def DTDHandler(self):
246        '''QXmlDTDHandler QXmlSimpleReader.DTDHandler()'''
247        return QXmlDTDHandler()
248    def setDTDHandler(self, handler):
249        '''void QXmlSimpleReader.setDTDHandler(QXmlDTDHandler handler)'''
250    def entityResolver(self):
251        '''QXmlEntityResolver QXmlSimpleReader.entityResolver()'''
252        return QXmlEntityResolver()
253    def setEntityResolver(self, handler):
254        '''void QXmlSimpleReader.setEntityResolver(QXmlEntityResolver handler)'''
255    def hasProperty(self, name):
256        '''bool QXmlSimpleReader.hasProperty(str name)'''
257        return bool()
258    def setProperty(self, name, value):
259        '''void QXmlSimpleReader.setProperty(str name, sip.voidptr value)'''
260    def property(self, name, ok):
261        '''sip.voidptr QXmlSimpleReader.property(str name, bool ok)'''
262        return sip.voidptr()
263    def hasFeature(self, name):
264        '''bool QXmlSimpleReader.hasFeature(str name)'''
265        return bool()
266    def setFeature(self, name, value):
267        '''void QXmlSimpleReader.setFeature(str name, bool value)'''
268    def feature(self, name, ok):
269        '''bool QXmlSimpleReader.feature(str name, bool ok)'''
270        return bool()
271
272
273class QXmlLocator():
274    """"""
275    def __init__(self):
276        '''void QXmlLocator.__init__()'''
277    def __init__(self):
278        '''QXmlLocator QXmlLocator.__init__()'''
279        return QXmlLocator()
280    def lineNumber(self):
281        '''abstract int QXmlLocator.lineNumber()'''
282        return int()
283    def columnNumber(self):
284        '''abstract int QXmlLocator.columnNumber()'''
285        return int()
286
287
288class QXmlContentHandler():
289    """"""
290    def __init__(self):
291        '''void QXmlContentHandler.__init__()'''
292    def __init__(self):
293        '''QXmlContentHandler QXmlContentHandler.__init__()'''
294        return QXmlContentHandler()
295    def errorString(self):
296        '''abstract str QXmlContentHandler.errorString()'''
297        return str()
298    def skippedEntity(self, name):
299        '''abstract bool QXmlContentHandler.skippedEntity(str name)'''
300        return bool()
301    def processingInstruction(self, target, data):
302        '''abstract bool QXmlContentHandler.processingInstruction(str target, str data)'''
303        return bool()
304    def ignorableWhitespace(self, ch):
305        '''abstract bool QXmlContentHandler.ignorableWhitespace(str ch)'''
306        return bool()
307    def characters(self, ch):
308        '''abstract bool QXmlContentHandler.characters(str ch)'''
309        return bool()
310    def endElement(self, namespaceURI, localName, qName):
311        '''abstract bool QXmlContentHandler.endElement(str namespaceURI, str localName, str qName)'''
312        return bool()
313    def startElement(self, namespaceURI, localName, qName, atts):
314        '''abstract bool QXmlContentHandler.startElement(str namespaceURI, str localName, str qName, QXmlAttributes atts)'''
315        return bool()
316    def endPrefixMapping(self, prefix):
317        '''abstract bool QXmlContentHandler.endPrefixMapping(str prefix)'''
318        return bool()
319    def startPrefixMapping(self, prefix, uri):
320        '''abstract bool QXmlContentHandler.startPrefixMapping(str prefix, str uri)'''
321        return bool()
322    def endDocument(self):
323        '''abstract bool QXmlContentHandler.endDocument()'''
324        return bool()
325    def startDocument(self):
326        '''abstract bool QXmlContentHandler.startDocument()'''
327        return bool()
328    def setDocumentLocator(self, locator):
329        '''abstract void QXmlContentHandler.setDocumentLocator(QXmlLocator locator)'''
330
331
332class QXmlErrorHandler():
333    """"""
334    def __init__(self):
335        '''void QXmlErrorHandler.__init__()'''
336    def __init__(self):
337        '''QXmlErrorHandler QXmlErrorHandler.__init__()'''
338        return QXmlErrorHandler()
339    def errorString(self):
340        '''abstract str QXmlErrorHandler.errorString()'''
341        return str()
342    def fatalError(self, exception):
343        '''abstract bool QXmlErrorHandler.fatalError(QXmlParseException exception)'''
344        return bool()
345    def error(self, exception):
346        '''abstract bool QXmlErrorHandler.error(QXmlParseException exception)'''
347        return bool()
348    def warning(self, exception):
349        '''abstract bool QXmlErrorHandler.warning(QXmlParseException exception)'''
350        return bool()
351
352
353class QXmlDTDHandler():
354    """"""
355    def __init__(self):
356        '''void QXmlDTDHandler.__init__()'''
357    def __init__(self):
358        '''QXmlDTDHandler QXmlDTDHandler.__init__()'''
359        return QXmlDTDHandler()
360    def errorString(self):
361        '''abstract str QXmlDTDHandler.errorString()'''
362        return str()
363    def unparsedEntityDecl(self, name, publicId, systemId, notationName):
364        '''abstract bool QXmlDTDHandler.unparsedEntityDecl(str name, str publicId, str systemId, str notationName)'''
365        return bool()
366    def notationDecl(self, name, publicId, systemId):
367        '''abstract bool QXmlDTDHandler.notationDecl(str name, str publicId, str systemId)'''
368        return bool()
369
370
371class QXmlEntityResolver():
372    """"""
373    def __init__(self):
374        '''void QXmlEntityResolver.__init__()'''
375    def __init__(self):
376        '''QXmlEntityResolver QXmlEntityResolver.__init__()'''
377        return QXmlEntityResolver()
378    def errorString(self):
379        '''abstract str QXmlEntityResolver.errorString()'''
380        return str()
381    def resolveEntity(self, publicId, systemId, ret):
382        '''abstract bool QXmlEntityResolver.resolveEntity(str publicId, str systemId, QXmlInputSource ret)'''
383        return bool()
384
385
386class QXmlLexicalHandler():
387    """"""
388    def __init__(self):
389        '''void QXmlLexicalHandler.__init__()'''
390    def __init__(self):
391        '''QXmlLexicalHandler QXmlLexicalHandler.__init__()'''
392        return QXmlLexicalHandler()
393    def errorString(self):
394        '''abstract str QXmlLexicalHandler.errorString()'''
395        return str()
396    def comment(self, ch):
397        '''abstract bool QXmlLexicalHandler.comment(str ch)'''
398        return bool()
399    def endCDATA(self):
400        '''abstract bool QXmlLexicalHandler.endCDATA()'''
401        return bool()
402    def startCDATA(self):
403        '''abstract bool QXmlLexicalHandler.startCDATA()'''
404        return bool()
405    def endEntity(self, name):
406        '''abstract bool QXmlLexicalHandler.endEntity(str name)'''
407        return bool()
408    def startEntity(self, name):
409        '''abstract bool QXmlLexicalHandler.startEntity(str name)'''
410        return bool()
411    def endDTD(self):
412        '''abstract bool QXmlLexicalHandler.endDTD()'''
413        return bool()
414    def startDTD(self, name, publicId, systemId):
415        '''abstract bool QXmlLexicalHandler.startDTD(str name, str publicId, str systemId)'''
416        return bool()
417
418
419class QXmlDeclHandler():
420    """"""
421    def __init__(self):
422        '''void QXmlDeclHandler.__init__()'''
423    def __init__(self):
424        '''QXmlDeclHandler QXmlDeclHandler.__init__()'''
425        return QXmlDeclHandler()
426    def errorString(self):
427        '''abstract str QXmlDeclHandler.errorString()'''
428        return str()
429    def externalEntityDecl(self, name, publicId, systemId):
430        '''abstract bool QXmlDeclHandler.externalEntityDecl(str name, str publicId, str systemId)'''
431        return bool()
432    def internalEntityDecl(self, name, value):
433        '''abstract bool QXmlDeclHandler.internalEntityDecl(str name, str value)'''
434        return bool()
435    def attributeDecl(self, eName, aName, type, valueDefault, value):
436        '''abstract bool QXmlDeclHandler.attributeDecl(str eName, str aName, str type, str valueDefault, str value)'''
437        return bool()
438
439
440class QXmlDefaultHandler(QXmlContentHandler, QXmlErrorHandler, QXmlDTDHandler, QXmlEntityResolver, QXmlLexicalHandler, QXmlDeclHandler):
441    """"""
442    def __init__(self):
443        '''void QXmlDefaultHandler.__init__()'''
444    def errorString(self):
445        '''str QXmlDefaultHandler.errorString()'''
446        return str()
447    def externalEntityDecl(self, name, publicId, systemId):
448        '''bool QXmlDefaultHandler.externalEntityDecl(str name, str publicId, str systemId)'''
449        return bool()
450    def internalEntityDecl(self, name, value):
451        '''bool QXmlDefaultHandler.internalEntityDecl(str name, str value)'''
452        return bool()
453    def attributeDecl(self, eName, aName, type, valueDefault, value):
454        '''bool QXmlDefaultHandler.attributeDecl(str eName, str aName, str type, str valueDefault, str value)'''
455        return bool()
456    def comment(self, ch):
457        '''bool QXmlDefaultHandler.comment(str ch)'''
458        return bool()
459    def endCDATA(self):
460        '''bool QXmlDefaultHandler.endCDATA()'''
461        return bool()
462    def startCDATA(self):
463        '''bool QXmlDefaultHandler.startCDATA()'''
464        return bool()
465    def endEntity(self, name):
466        '''bool QXmlDefaultHandler.endEntity(str name)'''
467        return bool()
468    def startEntity(self, name):
469        '''bool QXmlDefaultHandler.startEntity(str name)'''
470        return bool()
471    def endDTD(self):
472        '''bool QXmlDefaultHandler.endDTD()'''
473        return bool()
474    def startDTD(self, name, publicId, systemId):
475        '''bool QXmlDefaultHandler.startDTD(str name, str publicId, str systemId)'''
476        return bool()
477    def resolveEntity(self, publicId, systemId, ret):
478        '''bool QXmlDefaultHandler.resolveEntity(str publicId, str systemId, QXmlInputSource ret)'''
479        return bool()
480    def unparsedEntityDecl(self, name, publicId, systemId, notationName):
481        '''bool QXmlDefaultHandler.unparsedEntityDecl(str name, str publicId, str systemId, str notationName)'''
482        return bool()
483    def notationDecl(self, name, publicId, systemId):
484        '''bool QXmlDefaultHandler.notationDecl(str name, str publicId, str systemId)'''
485        return bool()
486    def fatalError(self, exception):
487        '''bool QXmlDefaultHandler.fatalError(QXmlParseException exception)'''
488        return bool()
489    def error(self, exception):
490        '''bool QXmlDefaultHandler.error(QXmlParseException exception)'''
491        return bool()
492    def warning(self, exception):
493        '''bool QXmlDefaultHandler.warning(QXmlParseException exception)'''
494        return bool()
495    def skippedEntity(self, name):
496        '''bool QXmlDefaultHandler.skippedEntity(str name)'''
497        return bool()
498    def processingInstruction(self, target, data):
499        '''bool QXmlDefaultHandler.processingInstruction(str target, str data)'''
500        return bool()
501    def ignorableWhitespace(self, ch):
502        '''bool QXmlDefaultHandler.ignorableWhitespace(str ch)'''
503        return bool()
504    def characters(self, ch):
505        '''bool QXmlDefaultHandler.characters(str ch)'''
506        return bool()
507    def endElement(self, namespaceURI, localName, qName):
508        '''bool QXmlDefaultHandler.endElement(str namespaceURI, str localName, str qName)'''
509        return bool()
510    def startElement(self, namespaceURI, localName, qName, atts):
511        '''bool QXmlDefaultHandler.startElement(str namespaceURI, str localName, str qName, QXmlAttributes atts)'''
512        return bool()
513    def endPrefixMapping(self, prefix):
514        '''bool QXmlDefaultHandler.endPrefixMapping(str prefix)'''
515        return bool()
516    def startPrefixMapping(self, prefix, uri):
517        '''bool QXmlDefaultHandler.startPrefixMapping(str prefix, str uri)'''
518        return bool()
519    def endDocument(self):
520        '''bool QXmlDefaultHandler.endDocument()'''
521        return bool()
522    def startDocument(self):
523        '''bool QXmlDefaultHandler.startDocument()'''
524        return bool()
525    def setDocumentLocator(self, locator):
526        '''void QXmlDefaultHandler.setDocumentLocator(QXmlLocator locator)'''
527
528
529class QDomImplementation():
530    """"""
531    # Enum QDomImplementation.InvalidDataPolicy
532    AcceptInvalidChars = 0
533    DropInvalidChars = 0
534    ReturnNullNode = 0
535
536    def __init__(self):
537        '''void QDomImplementation.__init__()'''
538    def __init__(self):
539        '''QDomImplementation QDomImplementation.__init__()'''
540        return QDomImplementation()
541    def isNull(self):
542        '''bool QDomImplementation.isNull()'''
543        return bool()
544    def setInvalidDataPolicy(self, policy):
545        '''static void QDomImplementation.setInvalidDataPolicy(QDomImplementation.InvalidDataPolicy policy)'''
546    def invalidDataPolicy(self):
547        '''static QDomImplementation.InvalidDataPolicy QDomImplementation.invalidDataPolicy()'''
548        return QDomImplementation.InvalidDataPolicy()
549    def createDocument(self, nsURI, qName, doctype):
550        '''QDomDocument QDomImplementation.createDocument(str nsURI, str qName, QDomDocumentType doctype)'''
551        return QDomDocument()
552    def createDocumentType(self, qName, publicId, systemId):
553        '''QDomDocumentType QDomImplementation.createDocumentType(str qName, str publicId, str systemId)'''
554        return QDomDocumentType()
555    def hasFeature(self, feature, version):
556        '''bool QDomImplementation.hasFeature(str feature, str version)'''
557        return bool()
558    def __ne__(self):
559        '''QDomImplementation QDomImplementation.__ne__()'''
560        return QDomImplementation()
561    def __eq__(self):
562        '''QDomImplementation QDomImplementation.__eq__()'''
563        return QDomImplementation()
564
565
566class QDomNode():
567    """"""
568    # Enum QDomNode.EncodingPolicy
569    EncodingFromDocument = 0
570    EncodingFromTextStream = 0
571
572    # Enum QDomNode.NodeType
573    ElementNode = 0
574    AttributeNode = 0
575    TextNode = 0
576    CDATASectionNode = 0
577    EntityReferenceNode = 0
578    EntityNode = 0
579    ProcessingInstructionNode = 0
580    CommentNode = 0
581    DocumentNode = 0
582    DocumentTypeNode = 0
583    DocumentFragmentNode = 0
584    NotationNode = 0
585    BaseNode = 0
586    CharacterDataNode = 0
587
588    def __init__(self):
589        '''void QDomNode.__init__()'''
590    def __init__(self):
591        '''QDomNode QDomNode.__init__()'''
592        return QDomNode()
593    def columnNumber(self):
594        '''int QDomNode.columnNumber()'''
595        return int()
596    def lineNumber(self):
597        '''int QDomNode.lineNumber()'''
598        return int()
599    def nextSiblingElement(self, taName = str()):
600        '''QDomElement QDomNode.nextSiblingElement(str taName = str())'''
601        return QDomElement()
602    def previousSiblingElement(self, tagName = str()):
603        '''QDomElement QDomNode.previousSiblingElement(str tagName = str())'''
604        return QDomElement()
605    def lastChildElement(self, tagName = str()):
606        '''QDomElement QDomNode.lastChildElement(str tagName = str())'''
607        return QDomElement()
608    def firstChildElement(self, tagName = str()):
609        '''QDomElement QDomNode.firstChildElement(str tagName = str())'''
610        return QDomElement()
611    def save(self):
612        '''QDomNode.EncodingPolicy QDomNode.save()'''
613        return QDomNode.EncodingPolicy()
614    def toComment(self):
615        '''QDomComment QDomNode.toComment()'''
616        return QDomComment()
617    def toCharacterData(self):
618        '''QDomCharacterData QDomNode.toCharacterData()'''
619        return QDomCharacterData()
620    def toProcessingInstruction(self):
621        '''QDomProcessingInstruction QDomNode.toProcessingInstruction()'''
622        return QDomProcessingInstruction()
623    def toNotation(self):
624        '''QDomNotation QDomNode.toNotation()'''
625        return QDomNotation()
626    def toEntity(self):
627        '''QDomEntity QDomNode.toEntity()'''
628        return QDomEntity()
629    def toText(self):
630        '''QDomText QDomNode.toText()'''
631        return QDomText()
632    def toEntityReference(self):
633        '''QDomEntityReference QDomNode.toEntityReference()'''
634        return QDomEntityReference()
635    def toElement(self):
636        '''QDomElement QDomNode.toElement()'''
637        return QDomElement()
638    def toDocumentType(self):
639        '''QDomDocumentType QDomNode.toDocumentType()'''
640        return QDomDocumentType()
641    def toDocument(self):
642        '''QDomDocument QDomNode.toDocument()'''
643        return QDomDocument()
644    def toDocumentFragment(self):
645        '''QDomDocumentFragment QDomNode.toDocumentFragment()'''
646        return QDomDocumentFragment()
647    def toCDATASection(self):
648        '''QDomCDATASection QDomNode.toCDATASection()'''
649        return QDomCDATASection()
650    def toAttr(self):
651        '''QDomAttr QDomNode.toAttr()'''
652        return QDomAttr()
653    def clear(self):
654        '''void QDomNode.clear()'''
655    def isNull(self):
656        '''bool QDomNode.isNull()'''
657        return bool()
658    def namedItem(self, name):
659        '''QDomNode QDomNode.namedItem(str name)'''
660        return QDomNode()
661    def isComment(self):
662        '''bool QDomNode.isComment()'''
663        return bool()
664    def isCharacterData(self):
665        '''bool QDomNode.isCharacterData()'''
666        return bool()
667    def isProcessingInstruction(self):
668        '''bool QDomNode.isProcessingInstruction()'''
669        return bool()
670    def isNotation(self):
671        '''bool QDomNode.isNotation()'''
672        return bool()
673    def isEntity(self):
674        '''bool QDomNode.isEntity()'''
675        return bool()
676    def isText(self):
677        '''bool QDomNode.isText()'''
678        return bool()
679    def isEntityReference(self):
680        '''bool QDomNode.isEntityReference()'''
681        return bool()
682    def isElement(self):
683        '''bool QDomNode.isElement()'''
684        return bool()
685    def isDocumentType(self):
686        '''bool QDomNode.isDocumentType()'''
687        return bool()
688    def isDocument(self):
689        '''bool QDomNode.isDocument()'''
690        return bool()
691    def isDocumentFragment(self):
692        '''bool QDomNode.isDocumentFragment()'''
693        return bool()
694    def isCDATASection(self):
695        '''bool QDomNode.isCDATASection()'''
696        return bool()
697    def isAttr(self):
698        '''bool QDomNode.isAttr()'''
699        return bool()
700    def setPrefix(self, pre):
701        '''void QDomNode.setPrefix(str pre)'''
702    def prefix(self):
703        '''str QDomNode.prefix()'''
704        return str()
705    def setNodeValue(self):
706        '''str QDomNode.setNodeValue()'''
707        return str()
708    def nodeValue(self):
709        '''str QDomNode.nodeValue()'''
710        return str()
711    def hasAttributes(self):
712        '''bool QDomNode.hasAttributes()'''
713        return bool()
714    def localName(self):
715        '''str QDomNode.localName()'''
716        return str()
717    def namespaceURI(self):
718        '''str QDomNode.namespaceURI()'''
719        return str()
720    def ownerDocument(self):
721        '''QDomDocument QDomNode.ownerDocument()'''
722        return QDomDocument()
723    def attributes(self):
724        '''QDomNamedNodeMap QDomNode.attributes()'''
725        return QDomNamedNodeMap()
726    def nextSibling(self):
727        '''QDomNode QDomNode.nextSibling()'''
728        return QDomNode()
729    def previousSibling(self):
730        '''QDomNode QDomNode.previousSibling()'''
731        return QDomNode()
732    def lastChild(self):
733        '''QDomNode QDomNode.lastChild()'''
734        return QDomNode()
735    def firstChild(self):
736        '''QDomNode QDomNode.firstChild()'''
737        return QDomNode()
738    def childNodes(self):
739        '''QDomNodeList QDomNode.childNodes()'''
740        return QDomNodeList()
741    def parentNode(self):
742        '''QDomNode QDomNode.parentNode()'''
743        return QDomNode()
744    def nodeType(self):
745        '''QDomNode.NodeType QDomNode.nodeType()'''
746        return QDomNode.NodeType()
747    def nodeName(self):
748        '''str QDomNode.nodeName()'''
749        return str()
750    def isSupported(self, feature, version):
751        '''bool QDomNode.isSupported(str feature, str version)'''
752        return bool()
753    def normalize(self):
754        '''void QDomNode.normalize()'''
755    def cloneNode(self, deep = True):
756        '''QDomNode QDomNode.cloneNode(bool deep = True)'''
757        return QDomNode()
758    def hasChildNodes(self):
759        '''bool QDomNode.hasChildNodes()'''
760        return bool()
761    def appendChild(self, newChild):
762        '''QDomNode QDomNode.appendChild(QDomNode newChild)'''
763        return QDomNode()
764    def removeChild(self, oldChild):
765        '''QDomNode QDomNode.removeChild(QDomNode oldChild)'''
766        return QDomNode()
767    def replaceChild(self, newChild, oldChild):
768        '''QDomNode QDomNode.replaceChild(QDomNode newChild, QDomNode oldChild)'''
769        return QDomNode()
770    def insertAfter(self, newChild, refChild):
771        '''QDomNode QDomNode.insertAfter(QDomNode newChild, QDomNode refChild)'''
772        return QDomNode()
773    def insertBefore(self, newChild, refChild):
774        '''QDomNode QDomNode.insertBefore(QDomNode newChild, QDomNode refChild)'''
775        return QDomNode()
776    def __ne__(self):
777        '''QDomNode QDomNode.__ne__()'''
778        return QDomNode()
779    def __eq__(self):
780        '''QDomNode QDomNode.__eq__()'''
781        return QDomNode()
782
783
784class QDomNodeList():
785    """"""
786    def __init__(self):
787        '''void QDomNodeList.__init__()'''
788    def __init__(self):
789        '''QDomNodeList QDomNodeList.__init__()'''
790        return QDomNodeList()
791    def isEmpty(self):
792        '''bool QDomNodeList.isEmpty()'''
793        return bool()
794    def size(self):
795        '''int QDomNodeList.size()'''
796        return int()
797    def __len__(self):
798        ''' QDomNodeList.__len__()'''
799        return ()
800    def count(self):
801        '''int QDomNodeList.count()'''
802        return int()
803    def length(self):
804        '''int QDomNodeList.length()'''
805        return int()
806    def at(self, index):
807        '''QDomNode QDomNodeList.at(int index)'''
808        return QDomNode()
809    def item(self, index):
810        '''QDomNode QDomNodeList.item(int index)'''
811        return QDomNode()
812    def __ne__(self):
813        '''QDomNodeList QDomNodeList.__ne__()'''
814        return QDomNodeList()
815    def __eq__(self):
816        '''QDomNodeList QDomNodeList.__eq__()'''
817        return QDomNodeList()
818
819
820class QDomDocumentType(QDomNode):
821    """"""
822    def __init__(self):
823        '''void QDomDocumentType.__init__()'''
824    def __init__(self, x):
825        '''void QDomDocumentType.__init__(QDomDocumentType x)'''
826    def nodeType(self):
827        '''QDomNode.NodeType QDomDocumentType.nodeType()'''
828        return QDomNode.NodeType()
829    def internalSubset(self):
830        '''str QDomDocumentType.internalSubset()'''
831        return str()
832    def systemId(self):
833        '''str QDomDocumentType.systemId()'''
834        return str()
835    def publicId(self):
836        '''str QDomDocumentType.publicId()'''
837        return str()
838    def notations(self):
839        '''QDomNamedNodeMap QDomDocumentType.notations()'''
840        return QDomNamedNodeMap()
841    def entities(self):
842        '''QDomNamedNodeMap QDomDocumentType.entities()'''
843        return QDomNamedNodeMap()
844    def name(self):
845        '''str QDomDocumentType.name()'''
846        return str()
847
848
849class QDomDocument(QDomNode):
850    """"""
851    def __init__(self):
852        '''void QDomDocument.__init__()'''
853    def __init__(self, name):
854        '''void QDomDocument.__init__(str name)'''
855    def __init__(self, doctype):
856        '''void QDomDocument.__init__(QDomDocumentType doctype)'''
857    def __init__(self, x):
858        '''void QDomDocument.__init__(QDomDocument x)'''
859    def toByteArray(self, indent = 1):
860        '''QByteArray QDomDocument.toByteArray(int indent = 1)'''
861        return QByteArray()
862    def toString(self, indent = 1):
863        '''str QDomDocument.toString(int indent = 1)'''
864        return str()
865    def setContent(self, text, namespaceProcessing, errorMsg, errorLine, errorColumn):
866        '''bool QDomDocument.setContent(QByteArray text, bool namespaceProcessing, str errorMsg, int errorLine, int errorColumn)'''
867        return bool()
868    def setContent(self, text, namespaceProcessing, errorMsg, errorLine, errorColumn):
869        '''bool QDomDocument.setContent(str text, bool namespaceProcessing, str errorMsg, int errorLine, int errorColumn)'''
870        return bool()
871    def setContent(self, dev, namespaceProcessing, errorMsg, errorLine, errorColumn):
872        '''bool QDomDocument.setContent(QIODevice dev, bool namespaceProcessing, str errorMsg, int errorLine, int errorColumn)'''
873        return bool()
874    def setContent(self, source, namespaceProcessing, errorMsg, errorLine, errorColumn):
875        '''bool QDomDocument.setContent(QXmlInputSource source, bool namespaceProcessing, str errorMsg, int errorLine, int errorColumn)'''
876        return bool()
877    def setContent(self, text, errorMsg, errorLine, errorColumn):
878        '''bool QDomDocument.setContent(QByteArray text, str errorMsg, int errorLine, int errorColumn)'''
879        return bool()
880    def setContent(self, text, errorMsg, errorLine, errorColumn):
881        '''bool QDomDocument.setContent(str text, str errorMsg, int errorLine, int errorColumn)'''
882        return bool()
883    def setContent(self, dev, errorMsg, errorLine, errorColumn):
884        '''bool QDomDocument.setContent(QIODevice dev, str errorMsg, int errorLine, int errorColumn)'''
885        return bool()
886    def setContent(self, source, reader, errorMsg, errorLine, errorColumn):
887        '''bool QDomDocument.setContent(QXmlInputSource source, QXmlReader reader, str errorMsg, int errorLine, int errorColumn)'''
888        return bool()
889    def nodeType(self):
890        '''QDomNode.NodeType QDomDocument.nodeType()'''
891        return QDomNode.NodeType()
892    def documentElement(self):
893        '''QDomElement QDomDocument.documentElement()'''
894        return QDomElement()
895    def implementation(self):
896        '''QDomImplementation QDomDocument.implementation()'''
897        return QDomImplementation()
898    def doctype(self):
899        '''QDomDocumentType QDomDocument.doctype()'''
900        return QDomDocumentType()
901    def elementById(self, elementId):
902        '''QDomElement QDomDocument.elementById(str elementId)'''
903        return QDomElement()
904    def elementsByTagNameNS(self, nsURI, localName):
905        '''QDomNodeList QDomDocument.elementsByTagNameNS(str nsURI, str localName)'''
906        return QDomNodeList()
907    def createAttributeNS(self, nsURI, qName):
908        '''QDomAttr QDomDocument.createAttributeNS(str nsURI, str qName)'''
909        return QDomAttr()
910    def createElementNS(self, nsURI, qName):
911        '''QDomElement QDomDocument.createElementNS(str nsURI, str qName)'''
912        return QDomElement()
913    def importNode(self, importedNode, deep):
914        '''QDomNode QDomDocument.importNode(QDomNode importedNode, bool deep)'''
915        return QDomNode()
916    def elementsByTagName(self, tagname):
917        '''QDomNodeList QDomDocument.elementsByTagName(str tagname)'''
918        return QDomNodeList()
919    def createEntityReference(self, name):
920        '''QDomEntityReference QDomDocument.createEntityReference(str name)'''
921        return QDomEntityReference()
922    def createAttribute(self, name):
923        '''QDomAttr QDomDocument.createAttribute(str name)'''
924        return QDomAttr()
925    def createProcessingInstruction(self, target, data):
926        '''QDomProcessingInstruction QDomDocument.createProcessingInstruction(str target, str data)'''
927        return QDomProcessingInstruction()
928    def createCDATASection(self, data):
929        '''QDomCDATASection QDomDocument.createCDATASection(str data)'''
930        return QDomCDATASection()
931    def createComment(self, data):
932        '''QDomComment QDomDocument.createComment(str data)'''
933        return QDomComment()
934    def createTextNode(self, data):
935        '''QDomText QDomDocument.createTextNode(str data)'''
936        return QDomText()
937    def createDocumentFragment(self):
938        '''QDomDocumentFragment QDomDocument.createDocumentFragment()'''
939        return QDomDocumentFragment()
940    def createElement(self, tagName):
941        '''QDomElement QDomDocument.createElement(str tagName)'''
942        return QDomElement()
943
944
945class QDomNamedNodeMap():
946    """"""
947    def __init__(self):
948        '''void QDomNamedNodeMap.__init__()'''
949    def __init__(self):
950        '''QDomNamedNodeMap QDomNamedNodeMap.__init__()'''
951        return QDomNamedNodeMap()
952    def contains(self, name):
953        '''bool QDomNamedNodeMap.contains(str name)'''
954        return bool()
955    def isEmpty(self):
956        '''bool QDomNamedNodeMap.isEmpty()'''
957        return bool()
958    def size(self):
959        '''int QDomNamedNodeMap.size()'''
960        return int()
961    def __len__(self):
962        ''' QDomNamedNodeMap.__len__()'''
963        return ()
964    def count(self):
965        '''int QDomNamedNodeMap.count()'''
966        return int()
967    def length(self):
968        '''int QDomNamedNodeMap.length()'''
969        return int()
970    def removeNamedItemNS(self, nsURI, localName):
971        '''QDomNode QDomNamedNodeMap.removeNamedItemNS(str nsURI, str localName)'''
972        return QDomNode()
973    def setNamedItemNS(self, newNode):
974        '''QDomNode QDomNamedNodeMap.setNamedItemNS(QDomNode newNode)'''
975        return QDomNode()
976    def namedItemNS(self, nsURI, localName):
977        '''QDomNode QDomNamedNodeMap.namedItemNS(str nsURI, str localName)'''
978        return QDomNode()
979    def item(self, index):
980        '''QDomNode QDomNamedNodeMap.item(int index)'''
981        return QDomNode()
982    def removeNamedItem(self, name):
983        '''QDomNode QDomNamedNodeMap.removeNamedItem(str name)'''
984        return QDomNode()
985    def setNamedItem(self, newNode):
986        '''QDomNode QDomNamedNodeMap.setNamedItem(QDomNode newNode)'''
987        return QDomNode()
988    def namedItem(self, name):
989        '''QDomNode QDomNamedNodeMap.namedItem(str name)'''
990        return QDomNode()
991    def __ne__(self):
992        '''QDomNamedNodeMap QDomNamedNodeMap.__ne__()'''
993        return QDomNamedNodeMap()
994    def __eq__(self):
995        '''QDomNamedNodeMap QDomNamedNodeMap.__eq__()'''
996        return QDomNamedNodeMap()
997
998
999class 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
1010class 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
1041class 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
1067class 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
1146class 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
1160class 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
1171class 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
1182class 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
1199class 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
1219class 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
1230class 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
1249