summaryrefslogtreecommitdiff
path: root/src/xmlpatterns/api/qabstractxmlpullprovider.cpp
diff options
context:
space:
mode:
authorQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2019-11-23 03:05:08 +0100
committerQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2019-11-23 03:05:08 +0100
commite43c025a7eeeb4fde4b2f751805c74b3a40e446d (patch)
tree3fd4fa71935f4b70cd2d1af50387f658340e045c /src/xmlpatterns/api/qabstractxmlpullprovider.cpp
parentc28a9a3d37feb5b98ac46b4b7a1aab9b0fd87697 (diff)
parente0fc9b9e593ea384868dc33ef2934b6cf5ec4e64 (diff)
downloadqtxmlpatterns-e43c025a7eeeb4fde4b2f751805c74b3a40e446d.tar.gz
Merge remote-tracking branch 'origin/5.15' into dev
Change-Id: I928747197843381b430cc4b652a74740b28b033b
Diffstat (limited to 'src/xmlpatterns/api/qabstractxmlpullprovider.cpp')
-rw-r--r--src/xmlpatterns/api/qabstractxmlpullprovider.cpp12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/xmlpatterns/api/qabstractxmlpullprovider.cpp b/src/xmlpatterns/api/qabstractxmlpullprovider.cpp
index 359bc81..6956fa1 100644
--- a/src/xmlpatterns/api/qabstractxmlpullprovider.cpp
+++ b/src/xmlpatterns/api/qabstractxmlpullprovider.cpp
@@ -73,6 +73,8 @@ using namespace QPatternist;
/*!
\enum AbstractXmlPullProvider::Event
+ \internal
+
\value StartOfInput The value AbstractXmlPullProvider::current() returns before the first call to next().
\value AtomicValue an atomic value such as an \c xs:integer, \c xs:hexBinary, or \c xs:dateTime. Atomic values
can only be top level items.
@@ -112,6 +114,7 @@ AbstractXmlPullProvider::~AbstractXmlPullProvider()
}
/*!
+ \internal
\fn QPatternist::AbstractXmlPullProvider::Event QPatternist::AbstractXmlPullProvider::next() = 0
Advances this AbstractXmlPullProvider, and returns the new event.
@@ -119,6 +122,7 @@ AbstractXmlPullProvider::~AbstractXmlPullProvider()
*/
/*!
+ \internal
\fn QPatternist::AbstractXmlPullProvider::Event QPatternist::AbstractXmlPullProvider::current() const = 0
Returns the event that next() returned the last time it was called. It doesn't
alter this AbstractXmlPullProvider.
@@ -130,6 +134,7 @@ AbstractXmlPullProvider::~AbstractXmlPullProvider()
*/
/*!
+ \internal
\fn QPatternist::AbstractXmlPullProvider::QName QPatternist::AbstractXmlPullProvider::name() const = 0
If the current event is StartElement,
EndElement, ProcessingInstruction, Attribute, or Namespace, the node's name is returned.
@@ -144,6 +149,7 @@ AbstractXmlPullProvider::~AbstractXmlPullProvider()
*/
/*!
+ \internal
\fn QVariant QPatternist::AbstractXmlPullProvider::atomicValue() const = 0
If current() event is AtomicValue, the atomic value is returned as a QVariant.
@@ -151,7 +157,8 @@ AbstractXmlPullProvider::~AbstractXmlPullProvider()
*/
/*!
- \fn QString QPatternist::AbstractXmlPullProvider::stringValue() const = 0
+ \internal
+ \fn QString QPatternist::AbstractXmlPullProvider::stringValue() const = 0
If current() is Text, the text node's value is returned.
@@ -165,7 +172,8 @@ AbstractXmlPullProvider::~AbstractXmlPullProvider()
*/
/*!
- \fn QHash<QXmlName, QString> QPatternist::AbstractXmlPullProvider::attributes() = 0
+ \internal
+ \fn QHash<QXmlName, QString> QPatternist::AbstractXmlPullProvider::attributes() = 0
If the current() is Element, the attributes of the element are returned,
an empty list of attributes otherwise.