File indexing completed on 2024-05-12 16:08:54

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