org.eclipse.xsd.XSDElementDeclaration.getDisallowedSubstitutions()方法的使用及代码示例

x33g5p2x  于2022-02-03 转载在 其他  
字(1.2k)|赞(0)|评价(0)|浏览(66)

本文整理了Java中org.eclipse.xsd.XSDElementDeclaration.getDisallowedSubstitutions()方法的一些代码示例,展示了XSDElementDeclaration.getDisallowedSubstitutions()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XSDElementDeclaration.getDisallowedSubstitutions()方法的具体详情如下:
包路径:org.eclipse.xsd.XSDElementDeclaration
类名称:XSDElementDeclaration
方法名:getDisallowedSubstitutions

XSDElementDeclaration.getDisallowedSubstitutions介绍

[英]Returns the value of the 'Disallowed Substitutions' attribute list. The list contents are of type org.eclipse.xsd.XSDDisallowedSubstitutions. The literals are from the enumeration org.eclipse.xsd.XSDDisallowedSubstitutions.

This represents the dissallowed substitutions infoset property. It is computed from the #getBlock() and should typically not be modified directly.
[中]返回“不允许的替换”属性列表的值。列表内容的类型为org。日食xsd。XSD减少了替代。文本来自枚举组织。日食xsd。XSD减少了替代。
这表示dissallowed substitutionsinfoset属性。它是根据#getBlock()计算的,通常不应直接修改。

代码示例

代码示例来源:origin: org.eclipse/org.eclipse.xsd

if (!subXSDElementDeclaration.getDisallowedSubstitutions().containsAll
    (superXSDElementDeclaration.getDisallowedSubstitutions()))

代码示例来源:origin: org.eclipse.xsd/org.eclipse.xsd

if (!subXSDElementDeclaration.getDisallowedSubstitutions().containsAll
    (superXSDElementDeclaration.getDisallowedSubstitutions()))

相关文章

微信公众号

最新文章

更多

XSDElementDeclaration类方法