QXmlStreamAttribute Class Reference |
QXmlStreamAttribute () | |
QXmlStreamAttribute ( const QString & qualifiedName, const QString & value ) | |
QXmlStreamAttribute ( const QString & namespaceUri, const QString & name, const QString & value ) | |
QXmlStreamAttribute ( const QXmlStreamAttribute & other ) | |
~QXmlStreamAttribute () | |
bool | isDefault () const |
QStringRef | name () const |
QStringRef | namespaceUri () const |
QStringRef | prefix () const |
QStringRef | qualifiedName () const |
QStringRef | value () const |
bool | operator!= ( const QXmlStreamAttribute & other ) const |
QXmlStreamAttribute & | operator= ( const QXmlStreamAttribute & other ) |
bool | operator== ( const QXmlStreamAttribute & other ) const |
The QXmlStreamAttribute class represents a single XML attribute
An attribute consists of an optionally empty namespaceUri(), a name(), a value(), and an isDefault() attribute.
The raw XML attribute name is returned as qualifiedName().
Creates an empty attribute.
Constructs an attribute with qualified name qualifiedName and value value.
Constructs an attribute in the namespace described with namespaceUri with name and value value.
Creates a copy of other.
Destructs an attribute.
Returns true if the parser added this attribute with a default value following an ATTLIST declaration in the DTD; otherwise returns false.
Returns the attribute's local name.
Returns the attribute's resolved namespaceUri, or an empty string reference if the attribute does not have a defined namespace.
Returns the attribute's namespace prefix.
This function was introduced in Qt 4.4.
See also name() and qualifiedName().
Returns the attribute's qualified name.
A qualified name is the raw name of an attribute in the XML data. It consists of the namespace prefix(), followed by colon, followed by the attribute's local name(). Since the namespace prefix is not unique (the same prefix can point to different namespaces and different prefixes can point to the same namespace), you shouldn't use qualifiedName(), but the resolved namespaceUri() and the attribute's local name().
Returns the attribute's value.
Compares this attribute with other and returns true if they are not equal; otherwise returns false.
Assigns other to this attribute.
Compares this attribute with other and returns true if they are equal; otherwise returns false.
Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. | Qt 4.6-snapshot | |
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD. | ||
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP ! |
Copyright © 2000-2012 - www.developpez.com