- class QXmlStreamEntityDeclaration#
QXmlStreamEntityDeclaration
类表示一个DTD实体声明。 更多…概述#
方法#
def
__init__()
def
name()
def
notationName()
def
__ne__()
def
__eq__()
def
publicId()
def
systemId()
def
value()
注意
此文档可能包含从C++自动翻译到Python的代码片段。我们始终欢迎对片段翻译的贡献。如果您发现翻译有问题,您也可以通过在https:/bugreports.qt.io/projects/PYSIDE创建一个问题单来告诉我们。
详细描述#
实体声明由一个
name()
、一个notationName()
、一个systemId()
、一个publicId()
和一个value()
组成。- __init__()#
创建一个空实体声明。
- name()#
- 返回类型::
str
返回实体名称。
- notationName()#
- 返回类型::
str
返回符号名称。
- __ne__(other)#
- 参数:
other –
QXmlStreamEntityDeclaration
- 返回类型::
bool
比较此实体声明与
other
,如果不相等返回true
;否则返回false
。- __eq__(other)#
- 参数:
other –
QXmlStreamEntityDeclaration
- 返回类型::
bool
比较此实体声明与
other
,如果相等返回true
;否则返回false
。- publicId()#
- 返回类型::
str
返回公开标识符。
- systemId()#
- 返回类型::
str
返回系统标识符。
- value()#
- 返回类型::
str
返回实体的值。