- class QXmlStreamEntityDeclaration¶
The
QXmlStreamEntityDeclaration
class represents a DTD entity declaration. More…Synopsis¶
Methods¶
def
__init__()
def
name()
def
notationName()
def
__ne__()
def
__eq__()
def
publicId()
def
systemId()
def
value()
Note
This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE
Detailed Description¶
An entity declaration consists of a
name()
, anotationName()
, asystemId()
, apublicId()
, and avalue()
.- __init__()¶
Creates an empty entity declaration.
- name()¶
- Return type:
str
Returns the entity name.
- notationName()¶
- Return type:
str
Returns the notation name.
- __ne__(rhs)¶
- Parameters:
- Return type:
bool
Compares
lhs
entity declaration withrhs
and returnstrue
if they are not equal; otherwise returnsfalse
.- __eq__(rhs)¶
- Parameters:
- Return type:
bool
Compares
lhs
entity declaration withrhs
and returnstrue
if they are equal; otherwise returnsfalse
.- publicId()¶
- Return type:
str
Returns the public identifier.
- systemId()¶
- Return type:
str
Returns the system identifier.
- value()¶
- Return type:
str
Returns the entity’s value.