- class QXmlStreamNotationDeclaration#
QXmlStreamNotationDeclaration
类表示一个 DTD notation 声明。更多…摘要#
方法#
def
__init__()
def
name()
def
__ne__()
def
__eq__()
def
publicId()
def
systemId()
注意
本文档可能包含从 C++ 自动翻译到 Python 的代码片段。我们始终欢迎对片段翻译的贡献。如果您发现翻译中存在问题,您也可以通过在 https:/bugreports.qt.io/projects/PYSIDE 上创建工单来通知我们。
详细说明#
符号声明包含一个
name()
,一个systemId()
,以及一个publicId()
。- __init__()#
创建一个空的符号声明。
- name()#
- 返回类型:
str
返回符号名称。
- __ne__(other)#
- 参数:
other –
QXmlStreamNotationDeclaration
- 返回类型:
bool
比较此符号声明与
other
,如果不相等则返回true
;否则返回false
。- __eq__(other)#
- 参数:
other –
QXmlStreamNotationDeclaration
- 返回类型:
bool
比较此符号声明与
other
,如果相等则返回true
;否则返回false
。- publicId()#
- 返回类型:
str
返回公共标识符。
- systemId()#
- 返回类型:
str
返回系统标识符。