QDomEntity - Represents an XML entity
#include <qdom.h>
Inherits QDomNode.
Public Members
QDomEntity ()
QDomEntity ( const QDomEntity & x )
QDomEntity& operator= ( const QDomEntity & )
~QDomEntity ()
virtual QString publicId () const
virtual QString systemId () const
virtual QString notationName () const
virtual QDomNode::NodeType nodeType () const
virtual bool isEntity () const
DESCRIPTION
The QDomEntity class represents an XML entity.
This class represents an entity in an XML document, either
parsed or unparsed. Note that this models the entity
itself not the entity declaration.
DOM does not support editing entity nodes; if a user wants
to make changes to the contents of an entity, every
related QDomEntityReference node has to be replaced in the
DOM tree by a clone of the entity's contents, and then the
desired changes must be made to each of those clones
instead. All the descendants of an entity node are
readonly.
An entity node does not have any parent.
For further information about the Document Objct Model see
http://www.w3.org/TR/REC-DOM-Level-1/. For a more general
introduction of the DOM implementation see the
QDomDocument documentation.
MEMBER FUNCTION DOCUMENTATION
QDomEntity::QDomEntity ()
Constructs an empty entity.
QDomEntity::QDomEntity ( const QDomEntity & x )
Copy constructor.
The data of the copy is shared: modifying one will also
change the other. If you want to make a real copy, use
cloneNode() instead.
QDomEntity::~QDomEntity ()
Destructor.
Returns TRUE.
Reimplemented from QDomNode.
QDomNode::NodeType QDomEntity::nodeType() const [virtual]
Returns EntityNode.
Reimplemented from QDomNode.
QString QDomEntity::notationName () const [virtual]
For unparsed entities this function returns the name of
the notation for the entity. For parsed entities this
function returns QString::null.
QDomEntity& QDomEntity::operator= ( const QDomEntity & x )
Assignment operator.
The data of the copy is shared: modifying one will also
change the other. If you want to make a real copy, use
cloneNode() instead.
QString QDomEntity::publicId () const [virtual]
Returns the public identifier associated with this entity.
If the public identifier was not specified QString::null
is returned.
QString QDomEntity::systemId () const [virtual]
Returns the system identifier associated with this entity.
If the system identifier was not specified QString::null
is returned.
SEE ALSO
http://doc.trolltech.com/qdomentity.html
http://www.trolltech.com/faq/tech.html
COPYRIGHT
Copyright 1992-2001 Trolltech AS,
http://www.trolltech.com. See the license file included
in the distribution for a complete license statement.
AUTHOR
Generated automatically from the source code.
BUGS
If you find a bug in Qt, please report it as described in
http://doc.trolltech.com/bughowto.html. Good bug reports
make our job much simpler. Thank you.
In case of content or formattting problems with this
manual page, please report them to qt-bugs@trolltech.com.
Please include the name of the manual page
(qdomentity.3qt) and the Qt version (2.3.1).
Man(1) output converted with
man2html