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 QAbstractMessageHandler(QObject):
11    """"""
12    def __init__(self, parent = None):
13        '''void QAbstractMessageHandler.__init__(QObject parent = None)'''
14    def handleMessage(self, type, description, identifier, sourceLocation):
15        '''abstract void QAbstractMessageHandler.handleMessage(QtMsgType type, str description, QUrl identifier, QSourceLocation sourceLocation)'''
16    def message(self, type, description, identifier = QUrl(), sourceLocation = QSourceLocation()):
17        '''void QAbstractMessageHandler.message(QtMsgType type, str description, QUrl identifier = QUrl(), QSourceLocation sourceLocation = QSourceLocation())'''
18
19
20class QAbstractUriResolver(QObject):
21    """"""
22    def __init__(self, parent = None):
23        '''void QAbstractUriResolver.__init__(QObject parent = None)'''
24    def resolve(self, relative, baseURI):
25        '''abstract QUrl QAbstractUriResolver.resolve(QUrl relative, QUrl baseURI)'''
26        return QUrl()
27
28
29class QXmlNodeModelIndex():
30    """"""
31    # Enum QXmlNodeModelIndex.DocumentOrder
32    Precedes = 0
33    Is = 0
34    Follows = 0
35
36    # Enum QXmlNodeModelIndex.NodeKind
37    Attribute = 0
38    Comment = 0
39    Document = 0
40    Element = 0
41    Namespace = 0
42    ProcessingInstruction = 0
43    Text = 0
44
45    def __init__(self):
46        '''void QXmlNodeModelIndex.__init__()'''
47    def __init__(self, other):
48        '''void QXmlNodeModelIndex.__init__(QXmlNodeModelIndex other)'''
49    def __hash__(self):
50        '''int QXmlNodeModelIndex.__hash__()'''
51        return int()
52    def isNull(self):
53        '''bool QXmlNodeModelIndex.isNull()'''
54        return bool()
55    def additionalData(self):
56        '''int QXmlNodeModelIndex.additionalData()'''
57        return int()
58    def model(self):
59        '''QAbstractXmlNodeModel QXmlNodeModelIndex.model()'''
60        return QAbstractXmlNodeModel()
61    def internalPointer(self):
62        '''object QXmlNodeModelIndex.internalPointer()'''
63        return object()
64    def data(self):
65        '''int QXmlNodeModelIndex.data()'''
66        return int()
67    def __ne__(self, other):
68        '''bool QXmlNodeModelIndex.__ne__(QXmlNodeModelIndex other)'''
69        return bool()
70    def __eq__(self, other):
71        '''bool QXmlNodeModelIndex.__eq__(QXmlNodeModelIndex other)'''
72        return bool()
73
74
75class QAbstractXmlNodeModel():
76    """"""
77    # Enum QAbstractXmlNodeModel.SimpleAxis
78    Parent = 0
79    FirstChild = 0
80    PreviousSibling = 0
81    NextSibling = 0
82
83    def __init__(self):
84        '''void QAbstractXmlNodeModel.__init__()'''
85    def createIndex(self, data):
86        '''QXmlNodeModelIndex QAbstractXmlNodeModel.createIndex(int data)'''
87        return QXmlNodeModelIndex()
88    def createIndex(self, data, additionalData):
89        '''QXmlNodeModelIndex QAbstractXmlNodeModel.createIndex(int data, int additionalData)'''
90        return QXmlNodeModelIndex()
91    def createIndex(self, pointer, additionalData = 0):
92        '''QXmlNodeModelIndex QAbstractXmlNodeModel.createIndex(object pointer, int additionalData = 0)'''
93        return QXmlNodeModelIndex()
94    def attributes(self, element):
95        '''abstract list-of-QXmlNodeModelIndex QAbstractXmlNodeModel.attributes(QXmlNodeModelIndex element)'''
96        return [QXmlNodeModelIndex()]
97    def nextFromSimpleAxis(self, axis, origin):
98        '''abstract QXmlNodeModelIndex QAbstractXmlNodeModel.nextFromSimpleAxis(QAbstractXmlNodeModel.SimpleAxis axis, QXmlNodeModelIndex origin)'''
99        return QXmlNodeModelIndex()
100    def sourceLocation(self, index):
101        '''QSourceLocation QAbstractXmlNodeModel.sourceLocation(QXmlNodeModelIndex index)'''
102        return QSourceLocation()
103    def nodesByIdref(self, NCName):
104        '''abstract list-of-QXmlNodeModelIndex QAbstractXmlNodeModel.nodesByIdref(QXmlName NCName)'''
105        return [QXmlNodeModelIndex()]
106    def elementById(self, NCName):
107        '''abstract QXmlNodeModelIndex QAbstractXmlNodeModel.elementById(QXmlName NCName)'''
108        return QXmlNodeModelIndex()
109    def namespaceBindings(self, n):
110        '''abstract list-of-QXmlName QAbstractXmlNodeModel.namespaceBindings(QXmlNodeModelIndex n)'''
111        return [QXmlName()]
112    def typedValue(self, n):
113        '''abstract QVariant QAbstractXmlNodeModel.typedValue(QXmlNodeModelIndex n)'''
114        return QVariant()
115    def stringValue(self, n):
116        '''abstract str QAbstractXmlNodeModel.stringValue(QXmlNodeModelIndex n)'''
117        return str()
118    def name(self, ni):
119        '''abstract QXmlName QAbstractXmlNodeModel.name(QXmlNodeModelIndex ni)'''
120        return QXmlName()
121    def root(self, n):
122        '''abstract QXmlNodeModelIndex QAbstractXmlNodeModel.root(QXmlNodeModelIndex n)'''
123        return QXmlNodeModelIndex()
124    def compareOrder(self, ni1, ni2):
125        '''abstract QXmlNodeModelIndex.DocumentOrder QAbstractXmlNodeModel.compareOrder(QXmlNodeModelIndex ni1, QXmlNodeModelIndex ni2)'''
126        return QXmlNodeModelIndex.DocumentOrder()
127    def kind(self, ni):
128        '''abstract QXmlNodeModelIndex.NodeKind QAbstractXmlNodeModel.kind(QXmlNodeModelIndex ni)'''
129        return QXmlNodeModelIndex.NodeKind()
130    def documentUri(self, ni):
131        '''abstract QUrl QAbstractXmlNodeModel.documentUri(QXmlNodeModelIndex ni)'''
132        return QUrl()
133    def baseUri(self, ni):
134        '''abstract QUrl QAbstractXmlNodeModel.baseUri(QXmlNodeModelIndex ni)'''
135        return QUrl()
136
137
138class QXmlItem():
139    """"""
140    def __init__(self):
141        '''void QXmlItem.__init__()'''
142    def __init__(self, other):
143        '''void QXmlItem.__init__(QXmlItem other)'''
144    def __init__(self, node):
145        '''void QXmlItem.__init__(QXmlNodeModelIndex node)'''
146    def __init__(self, atomicValue):
147        '''void QXmlItem.__init__(QVariant atomicValue)'''
148    def toNodeModelIndex(self):
149        '''QXmlNodeModelIndex QXmlItem.toNodeModelIndex()'''
150        return QXmlNodeModelIndex()
151    def toAtomicValue(self):
152        '''QVariant QXmlItem.toAtomicValue()'''
153        return QVariant()
154    def isAtomicValue(self):
155        '''bool QXmlItem.isAtomicValue()'''
156        return bool()
157    def isNode(self):
158        '''bool QXmlItem.isNode()'''
159        return bool()
160    def isNull(self):
161        '''bool QXmlItem.isNull()'''
162        return bool()
163
164
165class QAbstractXmlReceiver():
166    """"""
167    def __init__(self):
168        '''void QAbstractXmlReceiver.__init__()'''
169    def endOfSequence(self):
170        '''abstract void QAbstractXmlReceiver.endOfSequence()'''
171    def startOfSequence(self):
172        '''abstract void QAbstractXmlReceiver.startOfSequence()'''
173    def namespaceBinding(self, name):
174        '''abstract void QAbstractXmlReceiver.namespaceBinding(QXmlName name)'''
175    def atomicValue(self, value):
176        '''abstract void QAbstractXmlReceiver.atomicValue(QVariant value)'''
177    def processingInstruction(self, target, value):
178        '''abstract void QAbstractXmlReceiver.processingInstruction(QXmlName target, str value)'''
179    def endDocument(self):
180        '''abstract void QAbstractXmlReceiver.endDocument()'''
181    def startDocument(self):
182        '''abstract void QAbstractXmlReceiver.startDocument()'''
183    def characters(self, value):
184        '''abstract void QAbstractXmlReceiver.characters(QStringRef value)'''
185    def comment(self, value):
186        '''abstract void QAbstractXmlReceiver.comment(str value)'''
187    def attribute(self, name, value):
188        '''abstract void QAbstractXmlReceiver.attribute(QXmlName name, QStringRef value)'''
189    def endElement(self):
190        '''abstract void QAbstractXmlReceiver.endElement()'''
191    def startElement(self, name):
192        '''abstract void QAbstractXmlReceiver.startElement(QXmlName name)'''
193
194
195class QSimpleXmlNodeModel(QAbstractXmlNodeModel):
196    """"""
197    def __init__(self, namePool):
198        '''void QSimpleXmlNodeModel.__init__(QXmlNamePool namePool)'''
199    def nodesByIdref(self, idref):
200        '''list-of-QXmlNodeModelIndex QSimpleXmlNodeModel.nodesByIdref(QXmlName idref)'''
201        return [QXmlNodeModelIndex()]
202    def elementById(self, id):
203        '''QXmlNodeModelIndex QSimpleXmlNodeModel.elementById(QXmlName id)'''
204        return QXmlNodeModelIndex()
205    def stringValue(self, node):
206        '''str QSimpleXmlNodeModel.stringValue(QXmlNodeModelIndex node)'''
207        return str()
208    def namespaceBindings(self):
209        '''QXmlNodeModelIndex QSimpleXmlNodeModel.namespaceBindings()'''
210        return QXmlNodeModelIndex()
211    def namePool(self):
212        '''QXmlNamePool QSimpleXmlNodeModel.namePool()'''
213        return QXmlNamePool()
214    def baseUri(self, node):
215        '''QUrl QSimpleXmlNodeModel.baseUri(QXmlNodeModelIndex node)'''
216        return QUrl()
217
218
219class QSourceLocation():
220    """"""
221    def __init__(self):
222        '''void QSourceLocation.__init__()'''
223    def __init__(self, other):
224        '''void QSourceLocation.__init__(QSourceLocation other)'''
225    def __init__(self, u, line = None, column = None):
226        '''void QSourceLocation.__init__(QUrl u, int line = -1, int column = -1)'''
227    def __hash__(self):
228        '''int QSourceLocation.__hash__()'''
229        return int()
230    def isNull(self):
231        '''bool QSourceLocation.isNull()'''
232        return bool()
233    def setUri(self, newUri):
234        '''void QSourceLocation.setUri(QUrl newUri)'''
235    def uri(self):
236        '''QUrl QSourceLocation.uri()'''
237        return QUrl()
238    def setLine(self, newLine):
239        '''void QSourceLocation.setLine(int newLine)'''
240    def line(self):
241        '''int QSourceLocation.line()'''
242        return int()
243    def setColumn(self, newColumn):
244        '''void QSourceLocation.setColumn(int newColumn)'''
245    def column(self):
246        '''int QSourceLocation.column()'''
247        return int()
248    def __ne__(self, other):
249        '''bool QSourceLocation.__ne__(QSourceLocation other)'''
250        return bool()
251    def __eq__(self, other):
252        '''bool QSourceLocation.__eq__(QSourceLocation other)'''
253        return bool()
254
255
256class QXmlSerializer(QAbstractXmlReceiver):
257    """"""
258    def __init__(self, query, outputDevice):
259        '''void QXmlSerializer.__init__(QXmlQuery query, QIODevice outputDevice)'''
260    def codec(self):
261        '''QTextCodec QXmlSerializer.codec()'''
262        return QTextCodec()
263    def setCodec(self, codec):
264        '''void QXmlSerializer.setCodec(QTextCodec codec)'''
265    def outputDevice(self):
266        '''QIODevice QXmlSerializer.outputDevice()'''
267        return QIODevice()
268    def endOfSequence(self):
269        '''void QXmlSerializer.endOfSequence()'''
270    def startOfSequence(self):
271        '''void QXmlSerializer.startOfSequence()'''
272    def endDocument(self):
273        '''void QXmlSerializer.endDocument()'''
274    def startDocument(self):
275        '''void QXmlSerializer.startDocument()'''
276    def atomicValue(self, value):
277        '''void QXmlSerializer.atomicValue(QVariant value)'''
278    def processingInstruction(self, name, value):
279        '''void QXmlSerializer.processingInstruction(QXmlName name, str value)'''
280    def attribute(self, name, value):
281        '''void QXmlSerializer.attribute(QXmlName name, QStringRef value)'''
282    def endElement(self):
283        '''void QXmlSerializer.endElement()'''
284    def startElement(self, name):
285        '''void QXmlSerializer.startElement(QXmlName name)'''
286    def comment(self, value):
287        '''void QXmlSerializer.comment(str value)'''
288    def characters(self, value):
289        '''void QXmlSerializer.characters(QStringRef value)'''
290    def namespaceBinding(self, nb):
291        '''void QXmlSerializer.namespaceBinding(QXmlName nb)'''
292
293
294class QXmlFormatter(QXmlSerializer):
295    """"""
296    def __init__(self, query, outputDevice):
297        '''void QXmlFormatter.__init__(QXmlQuery query, QIODevice outputDevice)'''
298    def setIndentationDepth(self, depth):
299        '''void QXmlFormatter.setIndentationDepth(int depth)'''
300    def indentationDepth(self):
301        '''int QXmlFormatter.indentationDepth()'''
302        return int()
303    def endOfSequence(self):
304        '''void QXmlFormatter.endOfSequence()'''
305    def startOfSequence(self):
306        '''void QXmlFormatter.startOfSequence()'''
307    def endDocument(self):
308        '''void QXmlFormatter.endDocument()'''
309    def startDocument(self):
310        '''void QXmlFormatter.startDocument()'''
311    def atomicValue(self, value):
312        '''void QXmlFormatter.atomicValue(QVariant value)'''
313    def processingInstruction(self, name, value):
314        '''void QXmlFormatter.processingInstruction(QXmlName name, str value)'''
315    def attribute(self, name, value):
316        '''void QXmlFormatter.attribute(QXmlName name, QStringRef value)'''
317    def endElement(self):
318        '''void QXmlFormatter.endElement()'''
319    def startElement(self, name):
320        '''void QXmlFormatter.startElement(QXmlName name)'''
321    def comment(self, value):
322        '''void QXmlFormatter.comment(str value)'''
323    def characters(self, value):
324        '''void QXmlFormatter.characters(QStringRef value)'''
325
326
327class QXmlName():
328    """"""
329    def __init__(self):
330        '''void QXmlName.__init__()'''
331    def __init__(self, namePool, localName, namespaceUri = None, prefix = None):
332        '''void QXmlName.__init__(QXmlNamePool namePool, str localName, str namespaceUri = '', str prefix = '')'''
333    def __init__(self):
334        '''QXmlName QXmlName.__init__()'''
335        return QXmlName()
336    def __hash__(self):
337        '''int QXmlName.__hash__()'''
338        return int()
339    def fromClarkName(self, clarkName, namePool):
340        '''static QXmlName QXmlName.fromClarkName(str clarkName, QXmlNamePool namePool)'''
341        return QXmlName()
342    def isNCName(self, candidate):
343        '''static bool QXmlName.isNCName(str candidate)'''
344        return bool()
345    def isNull(self):
346        '''bool QXmlName.isNull()'''
347        return bool()
348    def __ne__(self, other):
349        '''bool QXmlName.__ne__(QXmlName other)'''
350        return bool()
351    def __eq__(self, other):
352        '''bool QXmlName.__eq__(QXmlName other)'''
353        return bool()
354    def toClarkName(self, query):
355        '''str QXmlName.toClarkName(QXmlNamePool query)'''
356        return str()
357    def localName(self, query):
358        '''str QXmlName.localName(QXmlNamePool query)'''
359        return str()
360    def prefix(self, query):
361        '''str QXmlName.prefix(QXmlNamePool query)'''
362        return str()
363    def namespaceUri(self, query):
364        '''str QXmlName.namespaceUri(QXmlNamePool query)'''
365        return str()
366
367
368class QXmlNamePool():
369    """"""
370    def __init__(self):
371        '''void QXmlNamePool.__init__()'''
372    def __init__(self, other):
373        '''void QXmlNamePool.__init__(QXmlNamePool other)'''
374
375
376class QXmlQuery():
377    """"""
378    # Enum QXmlQuery.QueryLanguage
379    XQuery10 = 0
380    XSLT20 = 0
381
382    def __init__(self):
383        '''void QXmlQuery.__init__()'''
384    def __init__(self, other):
385        '''void QXmlQuery.__init__(QXmlQuery other)'''
386    def __init__(self, np):
387        '''void QXmlQuery.__init__(QXmlNamePool np)'''
388    def __init__(self, queryLanguage, pool = QXmlNamePool()):
389        '''void QXmlQuery.__init__(QXmlQuery.QueryLanguage queryLanguage, QXmlNamePool pool = QXmlNamePool())'''
390    def queryLanguage(self):
391        '''QXmlQuery.QueryLanguage QXmlQuery.queryLanguage()'''
392        return QXmlQuery.QueryLanguage()
393    def networkAccessManager(self):
394        '''QNetworkAccessManager QXmlQuery.networkAccessManager()'''
395        return QNetworkAccessManager()
396    def setNetworkAccessManager(self, newManager):
397        '''void QXmlQuery.setNetworkAccessManager(QNetworkAccessManager newManager)'''
398    def initialTemplateName(self):
399        '''QXmlName QXmlQuery.initialTemplateName()'''
400        return QXmlName()
401    def setInitialTemplateName(self, name):
402        '''void QXmlQuery.setInitialTemplateName(QXmlName name)'''
403    def setInitialTemplateName(self, name):
404        '''void QXmlQuery.setInitialTemplateName(str name)'''
405    def setFocus(self, item):
406        '''void QXmlQuery.setFocus(QXmlItem item)'''
407    def setFocus(self, documentURI):
408        '''bool QXmlQuery.setFocus(QUrl documentURI)'''
409        return bool()
410    def setFocus(self, document):
411        '''bool QXmlQuery.setFocus(QIODevice document)'''
412        return bool()
413    def setFocus(self, focus):
414        '''bool QXmlQuery.setFocus(str focus)'''
415        return bool()
416    def uriResolver(self):
417        '''QAbstractUriResolver QXmlQuery.uriResolver()'''
418        return QAbstractUriResolver()
419    def setUriResolver(self, resolver):
420        '''void QXmlQuery.setUriResolver(QAbstractUriResolver resolver)'''
421    def evaluateToString(self):
422        '''str QXmlQuery.evaluateToString()'''
423        return str()
424    def evaluateToStringList(self):
425        '''list-of-str QXmlQuery.evaluateToStringList()'''
426        return [str()]
427    def evaluateTo(self, result):
428        '''void QXmlQuery.evaluateTo(QXmlResultItems result)'''
429    def evaluateTo(self, callback):
430        '''bool QXmlQuery.evaluateTo(QAbstractXmlReceiver callback)'''
431        return bool()
432    def evaluateTo(self, target):
433        '''bool QXmlQuery.evaluateTo(QIODevice target)'''
434        return bool()
435    def isValid(self):
436        '''bool QXmlQuery.isValid()'''
437        return bool()
438    def bindVariable(self, name, value):
439        '''void QXmlQuery.bindVariable(QXmlName name, QXmlItem value)'''
440    def bindVariable(self, name):
441        '''QIODevice QXmlQuery.bindVariable(QXmlName name)'''
442        return QIODevice()
443    def bindVariable(self, name, query):
444        '''void QXmlQuery.bindVariable(QXmlName name, QXmlQuery query)'''
445    def bindVariable(self, localName, value):
446        '''void QXmlQuery.bindVariable(str localName, QXmlItem value)'''
447    def bindVariable(self, localName):
448        '''QIODevice QXmlQuery.bindVariable(str localName)'''
449        return QIODevice()
450    def bindVariable(self, localName, query):
451        '''void QXmlQuery.bindVariable(str localName, QXmlQuery query)'''
452    def namePool(self):
453        '''QXmlNamePool QXmlQuery.namePool()'''
454        return QXmlNamePool()
455    def setQuery(self, sourceCode, documentUri = QUrl()):
456        '''void QXmlQuery.setQuery(str sourceCode, QUrl documentUri = QUrl())'''
457    def setQuery(self, sourceCode, documentUri = QUrl()):
458        '''void QXmlQuery.setQuery(QIODevice sourceCode, QUrl documentUri = QUrl())'''
459    def setQuery(self, queryURI, baseUri = QUrl()):
460        '''void QXmlQuery.setQuery(QUrl queryURI, QUrl baseUri = QUrl())'''
461    def messageHandler(self):
462        '''QAbstractMessageHandler QXmlQuery.messageHandler()'''
463        return QAbstractMessageHandler()
464    def setMessageHandler(self, messageHandler):
465        '''void QXmlQuery.setMessageHandler(QAbstractMessageHandler messageHandler)'''
466
467
468class QXmlResultItems():
469    """"""
470    def __init__(self):
471        '''void QXmlResultItems.__init__()'''
472    def current(self):
473        '''QXmlItem QXmlResultItems.current()'''
474        return QXmlItem()
475    def next(self):
476        '''QXmlItem QXmlResultItems.next()'''
477        return QXmlItem()
478    def hasError(self):
479        '''bool QXmlResultItems.hasError()'''
480        return bool()
481
482
483class QXmlSchema():
484    """"""
485    def __init__(self):
486        '''void QXmlSchema.__init__()'''
487    def __init__(self, other):
488        '''void QXmlSchema.__init__(QXmlSchema other)'''
489    def networkAccessManager(self):
490        '''QNetworkAccessManager QXmlSchema.networkAccessManager()'''
491        return QNetworkAccessManager()
492    def setNetworkAccessManager(self, networkmanager):
493        '''void QXmlSchema.setNetworkAccessManager(QNetworkAccessManager networkmanager)'''
494    def uriResolver(self):
495        '''QAbstractUriResolver QXmlSchema.uriResolver()'''
496        return QAbstractUriResolver()
497    def setUriResolver(self, resolver):
498        '''void QXmlSchema.setUriResolver(QAbstractUriResolver resolver)'''
499    def messageHandler(self):
500        '''QAbstractMessageHandler QXmlSchema.messageHandler()'''
501        return QAbstractMessageHandler()
502    def setMessageHandler(self, handler):
503        '''void QXmlSchema.setMessageHandler(QAbstractMessageHandler handler)'''
504    def documentUri(self):
505        '''QUrl QXmlSchema.documentUri()'''
506        return QUrl()
507    def namePool(self):
508        '''QXmlNamePool QXmlSchema.namePool()'''
509        return QXmlNamePool()
510    def isValid(self):
511        '''bool QXmlSchema.isValid()'''
512        return bool()
513    def load(self, source):
514        '''bool QXmlSchema.load(QUrl source)'''
515        return bool()
516    def load(self, source, documentUri = QUrl()):
517        '''bool QXmlSchema.load(QIODevice source, QUrl documentUri = QUrl())'''
518        return bool()
519    def load(self, data, documentUri = QUrl()):
520        '''bool QXmlSchema.load(QByteArray data, QUrl documentUri = QUrl())'''
521        return bool()
522
523
524class QXmlSchemaValidator():
525    """"""
526    def __init__(self):
527        '''void QXmlSchemaValidator.__init__()'''
528    def __init__(self, schema):
529        '''void QXmlSchemaValidator.__init__(QXmlSchema schema)'''
530    def networkAccessManager(self):
531        '''QNetworkAccessManager QXmlSchemaValidator.networkAccessManager()'''
532        return QNetworkAccessManager()
533    def setNetworkAccessManager(self, networkmanager):
534        '''void QXmlSchemaValidator.setNetworkAccessManager(QNetworkAccessManager networkmanager)'''
535    def uriResolver(self):
536        '''QAbstractUriResolver QXmlSchemaValidator.uriResolver()'''
537        return QAbstractUriResolver()
538    def setUriResolver(self, resolver):
539        '''void QXmlSchemaValidator.setUriResolver(QAbstractUriResolver resolver)'''
540    def messageHandler(self):
541        '''QAbstractMessageHandler QXmlSchemaValidator.messageHandler()'''
542        return QAbstractMessageHandler()
543    def setMessageHandler(self, handler):
544        '''void QXmlSchemaValidator.setMessageHandler(QAbstractMessageHandler handler)'''
545    def schema(self):
546        '''QXmlSchema QXmlSchemaValidator.schema()'''
547        return QXmlSchema()
548    def namePool(self):
549        '''QXmlNamePool QXmlSchemaValidator.namePool()'''
550        return QXmlNamePool()
551    def validate(self, source):
552        '''bool QXmlSchemaValidator.validate(QUrl source)'''
553        return bool()
554    def validate(self, source, documentUri = QUrl()):
555        '''bool QXmlSchemaValidator.validate(QIODevice source, QUrl documentUri = QUrl())'''
556        return bool()
557    def validate(self, data, documentUri = QUrl()):
558        '''bool QXmlSchemaValidator.validate(QByteArray data, QUrl documentUri = QUrl())'''
559        return bool()
560    def setSchema(self, schema):
561        '''void QXmlSchemaValidator.setSchema(QXmlSchema schema)'''
562
563
564