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