返回介绍

QXmlAttributes Class

发布于 2019-10-04 15:04:14 字数 6473 浏览 980 评论 0 收藏 0

The QXmlAttributes class provides XML attributes. More...

#include <qxml.h>

List of all member functions.

Public Members

  • QXmlAttributes ()
  • virtual ~QXmlAttributes ()
  • int index ( constQString&qName ) const
  • int index ( constQString&uri, constQString&localPart ) const
  • int length () const
  • int count () const
  • QString localName ( intindex ) const
  • QString qName ( intindex ) const
  • QString uri ( intindex ) const
  • QString type ( intindex ) const
  • QString type ( constQString&qName ) const
  • QString type ( constQString&uri, constQString&localName ) const
  • QString value ( intindex ) const
  • QString value ( constQString&qName ) const
  • QString value ( constQString&uri, constQString&localName ) const
  • void clear ()
  • void append ( constQString&qName, constQString&uri, constQString&localPart, constQString&value )

Detailed Description

The QXmlAttributes class provides XML attributes.

If attributes are reported by QXmlContentHandler::startElement() this class is used to pass the attribute values.

Use index() to locate the position of an attribute in the list, count() to retrieve the number of attributes, and clear() to remove the attributes. New attributes can be added with append(). Use type() to get an attribute's type and value() to get its value. The attribute's name is available from localName() or qName(), and its namespace URI from uri().

See also XML.


Member Function Documentation

QXmlAttributes::QXmlAttributes ()

Constructs an empty attribute list.

QXmlAttributes::~QXmlAttributes () [virtual]

Destroys the attributes object.

void QXmlAttributes::append ( constQString&qName, constQString&uri, constQString&localPart, constQString&value )

Appends a new attribute entry to the list of attributes. The qualified name of the attribute is qName, the namespae URI is uri and the local name is localPart. The value of the attribute is value.

See also qName(), uri(), localName() and value().

void QXmlAttributes::clear ()

Clears the list of attributes.

See also append().

int QXmlAttributes::count () const

Returns the number of attributes in the list. This function is equivalent to length().

int QXmlAttributes::index ( constQString&qName ) const

Looks up the index of an attribute by the qualified name qName.

Returns the index of the attribute or -1 if it wasn't found.

See also the namespace description.

int QXmlAttributes::index ( constQString&uri, constQString&localPart ) const

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

Looks up the index of an attribute by a namespace name.

uri specifies the namespace URI, or an empty string if the name has no namespace URI. localPart specifies the attribute's local name.

Returns the index of the attribute -1 if it wasn't found.

See also the namespace description.

int QXmlAttributes::length () const

Returns the number of attributes in the list.

Example: xml/tagreader-with-features/structureparser.cpp.

QString QXmlAttributes::localName ( intindex ) const

Looks up an attribute's local name for the attribute at position index. If no namespace processing is done, the local name is a null string.

See also the namespace description.

QString QXmlAttributes::qName ( intindex ) const

Looks up an attribute's XML 1.0 qualified name for the attribute at position index.

See also the namespace description.

Example: xml/tagreader-with-features/structureparser.cpp.

QString QXmlAttributes::type ( intindex ) const

Looks up an attribute's type for the attribute at position index.

Currently only "CDATA" is returned.

QString QXmlAttributes::type ( constQString&qName ) const

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

Looks up an attribute's type for the qualified name qName.

Currently only "CDATA" is returned.

QString QXmlAttributes::type ( constQString&uri, constQString&localName ) const

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

Looks up an attribute's type by namespace name.

uri specifies the namespace URI and localName specifies the local name. If the name has no namespace URI, use an empty string for uri.

Currently only "CDATA" is returned.

QString QXmlAttributes::uri ( intindex ) const

Looks up an attribute's namespace URI for the attribute at position index. If no namespace processing is done or if the attribute has no namespace, the namespace URI is a null string.

See also the namespace description.

Example: xml/tagreader-with-features/structureparser.cpp.

QString QXmlAttributes::value ( intindex ) const

Looks up an attribute's value for the attribute at position index.

QString QXmlAttributes::value ( constQString&qName ) const

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

Looks up an attribute's value for the qualified name qName.

See also the namespace description.

QString QXmlAttributes::value ( constQString&uri, constQString&localName ) const

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

Looks up an attribute's value by namespace name.

uri specifies the namespace URI, or an empty string if the name has no namespace URI. localName specifies the attribute's local name.

See also the namespace description.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文