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

0001 class pyqtSignal():
0002  def connect(self, targetSignal): pass
0003  def emit(self, *args): pass
0004 from QtCore import *
0005 
0006 from QtWidgets import *
0007 
0008 import datetime
0009 
0010 class QAbstractMessageHandler(QObject):
0011     """"""
0012     def __init__(self, parent = None):
0013         '''void QAbstractMessageHandler.__init__(QObject parent = None)'''
0014     def handleMessage(self, type, description, identifier, sourceLocation):
0015         '''abstract void QAbstractMessageHandler.handleMessage(QtMsgType type, str description, QUrl identifier, QSourceLocation sourceLocation)'''
0016     def message(self, type, description, identifier = QUrl(), sourceLocation = QSourceLocation()):
0017         '''void QAbstractMessageHandler.message(QtMsgType type, str description, QUrl identifier = QUrl(), QSourceLocation sourceLocation = QSourceLocation())'''
0018 
0019 
0020 class QAbstractUriResolver(QObject):
0021     """"""
0022     def __init__(self, parent = None):
0023         '''void QAbstractUriResolver.__init__(QObject parent = None)'''
0024     def resolve(self, relative, baseURI):
0025         '''abstract QUrl QAbstractUriResolver.resolve(QUrl relative, QUrl baseURI)'''
0026         return QUrl()
0027 
0028 
0029 class QXmlNodeModelIndex():
0030     """"""
0031     # Enum QXmlNodeModelIndex.DocumentOrder
0032     Precedes = 0
0033     Is = 0
0034     Follows = 0
0035 
0036     # Enum QXmlNodeModelIndex.NodeKind
0037     Attribute = 0
0038     Comment = 0
0039     Document = 0
0040     Element = 0
0041     Namespace = 0
0042     ProcessingInstruction = 0
0043     Text = 0
0044 
0045     def __init__(self):
0046         '''void QXmlNodeModelIndex.__init__()'''
0047     def __init__(self, other):
0048         '''void QXmlNodeModelIndex.__init__(QXmlNodeModelIndex other)'''
0049     def __hash__(self):
0050         '''int QXmlNodeModelIndex.__hash__()'''
0051         return int()
0052     def isNull(self):
0053         '''bool QXmlNodeModelIndex.isNull()'''
0054         return bool()
0055     def additionalData(self):
0056         '''int QXmlNodeModelIndex.additionalData()'''
0057         return int()
0058     def model(self):
0059         '''QAbstractXmlNodeModel QXmlNodeModelIndex.model()'''
0060         return QAbstractXmlNodeModel()
0061     def internalPointer(self):
0062         '''object QXmlNodeModelIndex.internalPointer()'''
0063         return object()
0064     def data(self):
0065         '''int QXmlNodeModelIndex.data()'''
0066         return int()
0067     def __ne__(self, other):
0068         '''bool QXmlNodeModelIndex.__ne__(QXmlNodeModelIndex other)'''
0069         return bool()
0070     def __eq__(self, other):
0071         '''bool QXmlNodeModelIndex.__eq__(QXmlNodeModelIndex other)'''
0072         return bool()
0073 
0074 
0075 class QAbstractXmlNodeModel():
0076     """"""
0077     # Enum QAbstractXmlNodeModel.SimpleAxis
0078     Parent = 0
0079     FirstChild = 0
0080     PreviousSibling = 0
0081     NextSibling = 0
0082 
0083     def __init__(self):
0084         '''void QAbstractXmlNodeModel.__init__()'''
0085     def createIndex(self, data):
0086         '''QXmlNodeModelIndex QAbstractXmlNodeModel.createIndex(int data)'''
0087         return QXmlNodeModelIndex()
0088     def createIndex(self, data, additionalData):
0089         '''QXmlNodeModelIndex QAbstractXmlNodeModel.createIndex(int data, int additionalData)'''
0090         return QXmlNodeModelIndex()
0091     def createIndex(self, pointer, additionalData = 0):
0092         '''QXmlNodeModelIndex QAbstractXmlNodeModel.createIndex(object pointer, int additionalData = 0)'''
0093         return QXmlNodeModelIndex()
0094     def attributes(self, element):
0095         '''abstract list-of-QXmlNodeModelIndex QAbstractXmlNodeModel.attributes(QXmlNodeModelIndex element)'''
0096         return [QXmlNodeModelIndex()]
0097     def nextFromSimpleAxis(self, axis, origin):
0098         '''abstract QXmlNodeModelIndex QAbstractXmlNodeModel.nextFromSimpleAxis(QAbstractXmlNodeModel.SimpleAxis axis, QXmlNodeModelIndex origin)'''
0099         return QXmlNodeModelIndex()
0100     def sourceLocation(self, index):
0101         '''QSourceLocation QAbstractXmlNodeModel.sourceLocation(QXmlNodeModelIndex index)'''
0102         return QSourceLocation()
0103     def nodesByIdref(self, NCName):
0104         '''abstract list-of-QXmlNodeModelIndex QAbstractXmlNodeModel.nodesByIdref(QXmlName NCName)'''
0105         return [QXmlNodeModelIndex()]
0106     def elementById(self, NCName):
0107         '''abstract QXmlNodeModelIndex QAbstractXmlNodeModel.elementById(QXmlName NCName)'''
0108         return QXmlNodeModelIndex()
0109     def namespaceBindings(self, n):
0110         '''abstract list-of-QXmlName QAbstractXmlNodeModel.namespaceBindings(QXmlNodeModelIndex n)'''
0111         return [QXmlName()]
0112     def typedValue(self, n):
0113         '''abstract QVariant QAbstractXmlNodeModel.typedValue(QXmlNodeModelIndex n)'''
0114         return QVariant()
0115     def stringValue(self, n):
0116         '''abstract str QAbstractXmlNodeModel.stringValue(QXmlNodeModelIndex n)'''
0117         return str()
0118     def name(self, ni):
0119         '''abstract QXmlName QAbstractXmlNodeModel.name(QXmlNodeModelIndex ni)'''
0120         return QXmlName()
0121     def root(self, n):
0122         '''abstract QXmlNodeModelIndex QAbstractXmlNodeModel.root(QXmlNodeModelIndex n)'''
0123         return QXmlNodeModelIndex()
0124     def compareOrder(self, ni1, ni2):
0125         '''abstract QXmlNodeModelIndex.DocumentOrder QAbstractXmlNodeModel.compareOrder(QXmlNodeModelIndex ni1, QXmlNodeModelIndex ni2)'''
0126         return QXmlNodeModelIndex.DocumentOrder()
0127     def kind(self, ni):
0128         '''abstract QXmlNodeModelIndex.NodeKind QAbstractXmlNodeModel.kind(QXmlNodeModelIndex ni)'''
0129         return QXmlNodeModelIndex.NodeKind()
0130     def documentUri(self, ni):
0131         '''abstract QUrl QAbstractXmlNodeModel.documentUri(QXmlNodeModelIndex ni)'''
0132         return QUrl()
0133     def baseUri(self, ni):
0134         '''abstract QUrl QAbstractXmlNodeModel.baseUri(QXmlNodeModelIndex ni)'''
0135         return QUrl()
0136 
0137 
0138 class QXmlItem():
0139     """"""
0140     def __init__(self):
0141         '''void QXmlItem.__init__()'''
0142     def __init__(self, other):
0143         '''void QXmlItem.__init__(QXmlItem other)'''
0144     def __init__(self, node):
0145         '''void QXmlItem.__init__(QXmlNodeModelIndex node)'''
0146     def __init__(self, atomicValue):
0147         '''void QXmlItem.__init__(QVariant atomicValue)'''
0148     def toNodeModelIndex(self):
0149         '''QXmlNodeModelIndex QXmlItem.toNodeModelIndex()'''
0150         return QXmlNodeModelIndex()
0151     def toAtomicValue(self):
0152         '''QVariant QXmlItem.toAtomicValue()'''
0153         return QVariant()
0154     def isAtomicValue(self):
0155         '''bool QXmlItem.isAtomicValue()'''
0156         return bool()
0157     def isNode(self):
0158         '''bool QXmlItem.isNode()'''
0159         return bool()
0160     def isNull(self):
0161         '''bool QXmlItem.isNull()'''
0162         return bool()
0163 
0164 
0165 class QAbstractXmlReceiver():
0166     """"""
0167     def __init__(self):
0168         '''void QAbstractXmlReceiver.__init__()'''
0169     def endOfSequence(self):
0170         '''abstract void QAbstractXmlReceiver.endOfSequence()'''
0171     def startOfSequence(self):
0172         '''abstract void QAbstractXmlReceiver.startOfSequence()'''
0173     def namespaceBinding(self, name):
0174         '''abstract void QAbstractXmlReceiver.namespaceBinding(QXmlName name)'''
0175     def atomicValue(self, value):
0176         '''abstract void QAbstractXmlReceiver.atomicValue(QVariant value)'''
0177     def processingInstruction(self, target, value):
0178         '''abstract void QAbstractXmlReceiver.processingInstruction(QXmlName target, str value)'''
0179     def endDocument(self):
0180         '''abstract void QAbstractXmlReceiver.endDocument()'''
0181     def startDocument(self):
0182         '''abstract void QAbstractXmlReceiver.startDocument()'''
0183     def characters(self, value):
0184         '''abstract void QAbstractXmlReceiver.characters(QStringRef value)'''
0185     def comment(self, value):
0186         '''abstract void QAbstractXmlReceiver.comment(str value)'''
0187     def attribute(self, name, value):
0188         '''abstract void QAbstractXmlReceiver.attribute(QXmlName name, QStringRef value)'''
0189     def endElement(self):
0190         '''abstract void QAbstractXmlReceiver.endElement()'''
0191     def startElement(self, name):
0192         '''abstract void QAbstractXmlReceiver.startElement(QXmlName name)'''
0193 
0194 
0195 class QSimpleXmlNodeModel(QAbstractXmlNodeModel):
0196     """"""
0197     def __init__(self, namePool):
0198         '''void QSimpleXmlNodeModel.__init__(QXmlNamePool namePool)'''
0199     def nodesByIdref(self, idref):
0200         '''list-of-QXmlNodeModelIndex QSimpleXmlNodeModel.nodesByIdref(QXmlName idref)'''
0201         return [QXmlNodeModelIndex()]
0202     def elementById(self, id):
0203         '''QXmlNodeModelIndex QSimpleXmlNodeModel.elementById(QXmlName id)'''
0204         return QXmlNodeModelIndex()
0205     def stringValue(self, node):
0206         '''str QSimpleXmlNodeModel.stringValue(QXmlNodeModelIndex node)'''
0207         return str()
0208     def namespaceBindings(self):
0209         '''QXmlNodeModelIndex QSimpleXmlNodeModel.namespaceBindings()'''
0210         return QXmlNodeModelIndex()
0211     def namePool(self):
0212         '''QXmlNamePool QSimpleXmlNodeModel.namePool()'''
0213         return QXmlNamePool()
0214     def baseUri(self, node):
0215         '''QUrl QSimpleXmlNodeModel.baseUri(QXmlNodeModelIndex node)'''
0216         return QUrl()
0217 
0218 
0219 class QSourceLocation():
0220     """"""
0221     def __init__(self):
0222         '''void QSourceLocation.__init__()'''
0223     def __init__(self, other):
0224         '''void QSourceLocation.__init__(QSourceLocation other)'''
0225     def __init__(self, u, line = None, column = None):
0226         '''void QSourceLocation.__init__(QUrl u, int line = -1, int column = -1)'''
0227     def __hash__(self):
0228         '''int QSourceLocation.__hash__()'''
0229         return int()
0230     def isNull(self):
0231         '''bool QSourceLocation.isNull()'''
0232         return bool()
0233     def setUri(self, newUri):
0234         '''void QSourceLocation.setUri(QUrl newUri)'''
0235     def uri(self):
0236         '''QUrl QSourceLocation.uri()'''
0237         return QUrl()
0238     def setLine(self, newLine):
0239         '''void QSourceLocation.setLine(int newLine)'''
0240     def line(self):
0241         '''int QSourceLocation.line()'''
0242         return int()
0243     def setColumn(self, newColumn):
0244         '''void QSourceLocation.setColumn(int newColumn)'''
0245     def column(self):
0246         '''int QSourceLocation.column()'''
0247         return int()
0248     def __ne__(self, other):
0249         '''bool QSourceLocation.__ne__(QSourceLocation other)'''
0250         return bool()
0251     def __eq__(self, other):
0252         '''bool QSourceLocation.__eq__(QSourceLocation other)'''
0253         return bool()
0254 
0255 
0256 class QXmlSerializer(QAbstractXmlReceiver):
0257     """"""
0258     def __init__(self, query, outputDevice):
0259         '''void QXmlSerializer.__init__(QXmlQuery query, QIODevice outputDevice)'''
0260     def codec(self):
0261         '''QTextCodec QXmlSerializer.codec()'''
0262         return QTextCodec()
0263     def setCodec(self, codec):
0264         '''void QXmlSerializer.setCodec(QTextCodec codec)'''
0265     def outputDevice(self):
0266         '''QIODevice QXmlSerializer.outputDevice()'''
0267         return QIODevice()
0268     def endOfSequence(self):
0269         '''void QXmlSerializer.endOfSequence()'''
0270     def startOfSequence(self):
0271         '''void QXmlSerializer.startOfSequence()'''
0272     def endDocument(self):
0273         '''void QXmlSerializer.endDocument()'''
0274     def startDocument(self):
0275         '''void QXmlSerializer.startDocument()'''
0276     def atomicValue(self, value):
0277         '''void QXmlSerializer.atomicValue(QVariant value)'''
0278     def processingInstruction(self, name, value):
0279         '''void QXmlSerializer.processingInstruction(QXmlName name, str value)'''
0280     def attribute(self, name, value):
0281         '''void QXmlSerializer.attribute(QXmlName name, QStringRef value)'''
0282     def endElement(self):
0283         '''void QXmlSerializer.endElement()'''
0284     def startElement(self, name):
0285         '''void QXmlSerializer.startElement(QXmlName name)'''
0286     def comment(self, value):
0287         '''void QXmlSerializer.comment(str value)'''
0288     def characters(self, value):
0289         '''void QXmlSerializer.characters(QStringRef value)'''
0290     def namespaceBinding(self, nb):
0291         '''void QXmlSerializer.namespaceBinding(QXmlName nb)'''
0292 
0293 
0294 class QXmlFormatter(QXmlSerializer):
0295     """"""
0296     def __init__(self, query, outputDevice):
0297         '''void QXmlFormatter.__init__(QXmlQuery query, QIODevice outputDevice)'''
0298     def setIndentationDepth(self, depth):
0299         '''void QXmlFormatter.setIndentationDepth(int depth)'''
0300     def indentationDepth(self):
0301         '''int QXmlFormatter.indentationDepth()'''
0302         return int()
0303     def endOfSequence(self):
0304         '''void QXmlFormatter.endOfSequence()'''
0305     def startOfSequence(self):
0306         '''void QXmlFormatter.startOfSequence()'''
0307     def endDocument(self):
0308         '''void QXmlFormatter.endDocument()'''
0309     def startDocument(self):
0310         '''void QXmlFormatter.startDocument()'''
0311     def atomicValue(self, value):
0312         '''void QXmlFormatter.atomicValue(QVariant value)'''
0313     def processingInstruction(self, name, value):
0314         '''void QXmlFormatter.processingInstruction(QXmlName name, str value)'''
0315     def attribute(self, name, value):
0316         '''void QXmlFormatter.attribute(QXmlName name, QStringRef value)'''
0317     def endElement(self):
0318         '''void QXmlFormatter.endElement()'''
0319     def startElement(self, name):
0320         '''void QXmlFormatter.startElement(QXmlName name)'''
0321     def comment(self, value):
0322         '''void QXmlFormatter.comment(str value)'''
0323     def characters(self, value):
0324         '''void QXmlFormatter.characters(QStringRef value)'''
0325 
0326 
0327 class QXmlName():
0328     """"""
0329     def __init__(self):
0330         '''void QXmlName.__init__()'''
0331     def __init__(self, namePool, localName, namespaceUri = None, prefix = None):
0332         '''void QXmlName.__init__(QXmlNamePool namePool, str localName, str namespaceUri = '', str prefix = '')'''
0333     def __init__(self):
0334         '''QXmlName QXmlName.__init__()'''
0335         return QXmlName()
0336     def __hash__(self):
0337         '''int QXmlName.__hash__()'''
0338         return int()
0339     def fromClarkName(self, clarkName, namePool):
0340         '''static QXmlName QXmlName.fromClarkName(str clarkName, QXmlNamePool namePool)'''
0341         return QXmlName()
0342     def isNCName(self, candidate):
0343         '''static bool QXmlName.isNCName(str candidate)'''
0344         return bool()
0345     def isNull(self):
0346         '''bool QXmlName.isNull()'''
0347         return bool()
0348     def __ne__(self, other):
0349         '''bool QXmlName.__ne__(QXmlName other)'''
0350         return bool()
0351     def __eq__(self, other):
0352         '''bool QXmlName.__eq__(QXmlName other)'''
0353         return bool()
0354     def toClarkName(self, query):
0355         '''str QXmlName.toClarkName(QXmlNamePool query)'''
0356         return str()
0357     def localName(self, query):
0358         '''str QXmlName.localName(QXmlNamePool query)'''
0359         return str()
0360     def prefix(self, query):
0361         '''str QXmlName.prefix(QXmlNamePool query)'''
0362         return str()
0363     def namespaceUri(self, query):
0364         '''str QXmlName.namespaceUri(QXmlNamePool query)'''
0365         return str()
0366 
0367 
0368 class QXmlNamePool():
0369     """"""
0370     def __init__(self):
0371         '''void QXmlNamePool.__init__()'''
0372     def __init__(self, other):
0373         '''void QXmlNamePool.__init__(QXmlNamePool other)'''
0374 
0375 
0376 class QXmlQuery():
0377     """"""
0378     # Enum QXmlQuery.QueryLanguage
0379     XQuery10 = 0
0380     XSLT20 = 0
0381 
0382     def __init__(self):
0383         '''void QXmlQuery.__init__()'''
0384     def __init__(self, other):
0385         '''void QXmlQuery.__init__(QXmlQuery other)'''
0386     def __init__(self, np):
0387         '''void QXmlQuery.__init__(QXmlNamePool np)'''
0388     def __init__(self, queryLanguage, pool = QXmlNamePool()):
0389         '''void QXmlQuery.__init__(QXmlQuery.QueryLanguage queryLanguage, QXmlNamePool pool = QXmlNamePool())'''
0390     def queryLanguage(self):
0391         '''QXmlQuery.QueryLanguage QXmlQuery.queryLanguage()'''
0392         return QXmlQuery.QueryLanguage()
0393     def networkAccessManager(self):
0394         '''QNetworkAccessManager QXmlQuery.networkAccessManager()'''
0395         return QNetworkAccessManager()
0396     def setNetworkAccessManager(self, newManager):
0397         '''void QXmlQuery.setNetworkAccessManager(QNetworkAccessManager newManager)'''
0398     def initialTemplateName(self):
0399         '''QXmlName QXmlQuery.initialTemplateName()'''
0400         return QXmlName()
0401     def setInitialTemplateName(self, name):
0402         '''void QXmlQuery.setInitialTemplateName(QXmlName name)'''
0403     def setInitialTemplateName(self, name):
0404         '''void QXmlQuery.setInitialTemplateName(str name)'''
0405     def setFocus(self, item):
0406         '''void QXmlQuery.setFocus(QXmlItem item)'''
0407     def setFocus(self, documentURI):
0408         '''bool QXmlQuery.setFocus(QUrl documentURI)'''
0409         return bool()
0410     def setFocus(self, document):
0411         '''bool QXmlQuery.setFocus(QIODevice document)'''
0412         return bool()
0413     def setFocus(self, focus):
0414         '''bool QXmlQuery.setFocus(str focus)'''
0415         return bool()
0416     def uriResolver(self):
0417         '''QAbstractUriResolver QXmlQuery.uriResolver()'''
0418         return QAbstractUriResolver()
0419     def setUriResolver(self, resolver):
0420         '''void QXmlQuery.setUriResolver(QAbstractUriResolver resolver)'''
0421     def evaluateToString(self):
0422         '''str QXmlQuery.evaluateToString()'''
0423         return str()
0424     def evaluateToStringList(self):
0425         '''list-of-str QXmlQuery.evaluateToStringList()'''
0426         return [str()]
0427     def evaluateTo(self, result):
0428         '''void QXmlQuery.evaluateTo(QXmlResultItems result)'''
0429     def evaluateTo(self, callback):
0430         '''bool QXmlQuery.evaluateTo(QAbstractXmlReceiver callback)'''
0431         return bool()
0432     def evaluateTo(self, target):
0433         '''bool QXmlQuery.evaluateTo(QIODevice target)'''
0434         return bool()
0435     def isValid(self):
0436         '''bool QXmlQuery.isValid()'''
0437         return bool()
0438     def bindVariable(self, name, value):
0439         '''void QXmlQuery.bindVariable(QXmlName name, QXmlItem value)'''
0440     def bindVariable(self, name):
0441         '''QIODevice QXmlQuery.bindVariable(QXmlName name)'''
0442         return QIODevice()
0443     def bindVariable(self, name, query):
0444         '''void QXmlQuery.bindVariable(QXmlName name, QXmlQuery query)'''
0445     def bindVariable(self, localName, value):
0446         '''void QXmlQuery.bindVariable(str localName, QXmlItem value)'''
0447     def bindVariable(self, localName):
0448         '''QIODevice QXmlQuery.bindVariable(str localName)'''
0449         return QIODevice()
0450     def bindVariable(self, localName, query):
0451         '''void QXmlQuery.bindVariable(str localName, QXmlQuery query)'''
0452     def namePool(self):
0453         '''QXmlNamePool QXmlQuery.namePool()'''
0454         return QXmlNamePool()
0455     def setQuery(self, sourceCode, documentUri = QUrl()):
0456         '''void QXmlQuery.setQuery(str sourceCode, QUrl documentUri = QUrl())'''
0457     def setQuery(self, sourceCode, documentUri = QUrl()):
0458         '''void QXmlQuery.setQuery(QIODevice sourceCode, QUrl documentUri = QUrl())'''
0459     def setQuery(self, queryURI, baseUri = QUrl()):
0460         '''void QXmlQuery.setQuery(QUrl queryURI, QUrl baseUri = QUrl())'''
0461     def messageHandler(self):
0462         '''QAbstractMessageHandler QXmlQuery.messageHandler()'''
0463         return QAbstractMessageHandler()
0464     def setMessageHandler(self, messageHandler):
0465         '''void QXmlQuery.setMessageHandler(QAbstractMessageHandler messageHandler)'''
0466 
0467 
0468 class QXmlResultItems():
0469     """"""
0470     def __init__(self):
0471         '''void QXmlResultItems.__init__()'''
0472     def current(self):
0473         '''QXmlItem QXmlResultItems.current()'''
0474         return QXmlItem()
0475     def next(self):
0476         '''QXmlItem QXmlResultItems.next()'''
0477         return QXmlItem()
0478     def hasError(self):
0479         '''bool QXmlResultItems.hasError()'''
0480         return bool()
0481 
0482 
0483 class QXmlSchema():
0484     """"""
0485     def __init__(self):
0486         '''void QXmlSchema.__init__()'''
0487     def __init__(self, other):
0488         '''void QXmlSchema.__init__(QXmlSchema other)'''
0489     def networkAccessManager(self):
0490         '''QNetworkAccessManager QXmlSchema.networkAccessManager()'''
0491         return QNetworkAccessManager()
0492     def setNetworkAccessManager(self, networkmanager):
0493         '''void QXmlSchema.setNetworkAccessManager(QNetworkAccessManager networkmanager)'''
0494     def uriResolver(self):
0495         '''QAbstractUriResolver QXmlSchema.uriResolver()'''
0496         return QAbstractUriResolver()
0497     def setUriResolver(self, resolver):
0498         '''void QXmlSchema.setUriResolver(QAbstractUriResolver resolver)'''
0499     def messageHandler(self):
0500         '''QAbstractMessageHandler QXmlSchema.messageHandler()'''
0501         return QAbstractMessageHandler()
0502     def setMessageHandler(self, handler):
0503         '''void QXmlSchema.setMessageHandler(QAbstractMessageHandler handler)'''
0504     def documentUri(self):
0505         '''QUrl QXmlSchema.documentUri()'''
0506         return QUrl()
0507     def namePool(self):
0508         '''QXmlNamePool QXmlSchema.namePool()'''
0509         return QXmlNamePool()
0510     def isValid(self):
0511         '''bool QXmlSchema.isValid()'''
0512         return bool()
0513     def load(self, source):
0514         '''bool QXmlSchema.load(QUrl source)'''
0515         return bool()
0516     def load(self, source, documentUri = QUrl()):
0517         '''bool QXmlSchema.load(QIODevice source, QUrl documentUri = QUrl())'''
0518         return bool()
0519     def load(self, data, documentUri = QUrl()):
0520         '''bool QXmlSchema.load(QByteArray data, QUrl documentUri = QUrl())'''
0521         return bool()
0522 
0523 
0524 class QXmlSchemaValidator():
0525     """"""
0526     def __init__(self):
0527         '''void QXmlSchemaValidator.__init__()'''
0528     def __init__(self, schema):
0529         '''void QXmlSchemaValidator.__init__(QXmlSchema schema)'''
0530     def networkAccessManager(self):
0531         '''QNetworkAccessManager QXmlSchemaValidator.networkAccessManager()'''
0532         return QNetworkAccessManager()
0533     def setNetworkAccessManager(self, networkmanager):
0534         '''void QXmlSchemaValidator.setNetworkAccessManager(QNetworkAccessManager networkmanager)'''
0535     def uriResolver(self):
0536         '''QAbstractUriResolver QXmlSchemaValidator.uriResolver()'''
0537         return QAbstractUriResolver()
0538     def setUriResolver(self, resolver):
0539         '''void QXmlSchemaValidator.setUriResolver(QAbstractUriResolver resolver)'''
0540     def messageHandler(self):
0541         '''QAbstractMessageHandler QXmlSchemaValidator.messageHandler()'''
0542         return QAbstractMessageHandler()
0543     def setMessageHandler(self, handler):
0544         '''void QXmlSchemaValidator.setMessageHandler(QAbstractMessageHandler handler)'''
0545     def schema(self):
0546         '''QXmlSchema QXmlSchemaValidator.schema()'''
0547         return QXmlSchema()
0548     def namePool(self):
0549         '''QXmlNamePool QXmlSchemaValidator.namePool()'''
0550         return QXmlNamePool()
0551     def validate(self, source):
0552         '''bool QXmlSchemaValidator.validate(QUrl source)'''
0553         return bool()
0554     def validate(self, source, documentUri = QUrl()):
0555         '''bool QXmlSchemaValidator.validate(QIODevice source, QUrl documentUri = QUrl())'''
0556         return bool()
0557     def validate(self, data, documentUri = QUrl()):
0558         '''bool QXmlSchemaValidator.validate(QByteArray data, QUrl documentUri = QUrl())'''
0559         return bool()
0560     def setSchema(self, schema):
0561         '''void QXmlSchemaValidator.setSchema(QXmlSchema schema)'''
0562 
0563