• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java ItemPSVI类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中com.sun.org.apache.xerces.internal.xs.ItemPSVI的典型用法代码示例。如果您正苦于以下问题:Java ItemPSVI类的具体用法?Java ItemPSVI怎么用?Java ItemPSVI使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



ItemPSVI类属于com.sun.org.apache.xerces.internal.xs包,在下文中一共展示了ItemPSVI类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: testSettingSimpleType

import com.sun.org.apache.xerces.internal.xs.ItemPSVI; //导入依赖的package包/类
@Test
public void testSettingSimpleType() throws Exception {
    try {
        reset();
        fValidator.setProperty(ROOT_TYPE, typeString);
    } catch (SAXException e1) {
        fail("Problem setting property: " + e1.getMessage());
    }

    try {
        validateDocument();
    } catch (Exception e) {
        fail("Validation failed: " + e.getMessage());
    }

    assertValidity(ItemPSVI.VALIDITY_VALID, fRootNode.getValidity());
    assertValidationAttempted(ItemPSVI.VALIDATION_FULL, fRootNode
            .getValidationAttempted());
    assertElementNull(fRootNode.getElementDeclaration());
    assertTypeName("string", fRootNode.getTypeDefinition().getName());
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:22,代码来源:RootSimpleTypeDefinitionTest.java


示例2: testSettingInvalidSimpleType

import com.sun.org.apache.xerces.internal.xs.ItemPSVI; //导入依赖的package包/类
@Test
public void testSettingInvalidSimpleType() throws Exception {
    try {
        reset();
        fValidator.setProperty(ROOT_TYPE, typeNonNegInt);
    } catch (SAXException e1) {
        fail("Problem setting property: " + e1.getMessage());
    }

    try {
        validateDocument();
    } catch (Exception e) {
        fail("Validation failed: " + e.getMessage());
    }

    assertError(INVALID_TYPE_ERROR);
    assertError(MININCLUSIVE_DERIVATION_ERROR);
    assertValidity(ItemPSVI.VALIDITY_INVALID, fRootNode.getValidity());
    assertValidationAttempted(ItemPSVI.VALIDATION_FULL, fRootNode
            .getValidationAttempted());
    assertElementNull(fRootNode.getElementDeclaration());
    assertTypeName("nonNegativeInteger", fRootNode.getTypeDefinition().getName());
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:24,代码来源:RootSimpleTypeDefinitionTest.java


示例3: checkResult

import com.sun.org.apache.xerces.internal.xs.ItemPSVI; //导入依赖的package包/类
private void checkResult() {
    PSVIElementNSImpl child = super.getChild(1);
    assertValidity(ItemPSVI.VALIDITY_VALID, child.getValidity());
    assertValidationAttempted(ItemPSVI.VALIDATION_FULL, child
            .getValidationAttempted());
    assertElementNull(child.getElementDeclaration());
    assertTypeName("X", child.getTypeDefinition().getName());
    assertTypeNamespaceNull(child.getTypeDefinition().getNamespace());

    child = super.getChild(2);
    assertValidity(ItemPSVI.VALIDITY_NOTKNOWN, child.getValidity());
    assertValidationAttempted(ItemPSVI.VALIDATION_NONE, child
            .getValidationAttempted());
    assertElementNull(child.getElementDeclaration());
    assertTypeName("anyType", child.getTypeDefinition().getName());
    assertTypeNamespace("http://www.w3.org/2001/XMLSchema",
            child.getTypeDefinition().getNamespace());

}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:20,代码来源:Xerces1128doc2Test.java


示例4: checkResult

import com.sun.org.apache.xerces.internal.xs.ItemPSVI; //导入依赖的package包/类
private void checkResult() {
    PSVIElementNSImpl child = super.getChild(1);
    assertValidity(ItemPSVI.VALIDITY_NOTKNOWN, child.getValidity());
    assertValidationAttempted(ItemPSVI.VALIDATION_NONE, child
            .getValidationAttempted());
    assertElementNull(child.getElementDeclaration());
    assertTypeName("anyType", child.getTypeDefinition().getName());
    assertTypeNamespace("http://www.w3.org/2001/XMLSchema",
            child.getTypeDefinition().getNamespace());

    child = super.getChild(2);
    assertValidity(ItemPSVI.VALIDITY_VALID, child.getValidity());
    assertValidationAttempted(ItemPSVI.VALIDATION_FULL, child
            .getValidationAttempted());
    assertElementNull(child.getElementDeclaration());
    assertTypeName("X", child.getTypeDefinition().getName());
    assertTypeNamespaceNull(child.getTypeDefinition().getNamespace());
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:19,代码来源:Xerces1128doc1Test.java


示例5: testUsingDocumentBuilderFactory

import com.sun.org.apache.xerces.internal.xs.ItemPSVI; //导入依赖的package包/类
/**
 * XERCESJ-1141 root-type-definition property not read by XMLSchemaValidator during reset()
 */
@Test
public void testUsingDocumentBuilderFactory() throws Exception {
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    dbf.setAttribute(ROOT_TYPE, typeX);
    dbf.setAttribute(DOCUMENT_CLASS_NAME,"com.sun.org.apache.xerces.internal.dom.PSVIDocumentImpl");
    dbf.setNamespaceAware(true);
    dbf.setValidating(false);

    SchemaFactory sf = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
    dbf.setSchema(sf.newSchema(fSchemaURL));

    DocumentBuilder db = dbf.newDocumentBuilder();
    Document document = db.parse(fDocumentURL.toExternalForm());
    ElementPSVI rootNode = (ElementPSVI) document.getDocumentElement();

    assertValidity(ItemPSVI.VALIDITY_VALID, rootNode.getValidity());
    assertValidationAttempted(ItemPSVI.VALIDATION_FULL, rootNode
            .getValidationAttempted());
    assertElementNull(rootNode.getElementDeclaration());
    assertTypeName("X", rootNode.getTypeDefinition().getName());
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:25,代码来源:RootTypeDefinitionTest.java


示例6: checkFalseResult

import com.sun.org.apache.xerces.internal.xs.ItemPSVI; //导入依赖的package包/类
private void checkFalseResult() {
    assertValidity(ItemPSVI.VALIDITY_VALID, fRootNode.getValidity());
    assertValidationAttempted(ItemPSVI.VALIDATION_FULL, fRootNode
            .getValidationAttempted());
    assertElementNull(fRootNode.getElementDeclaration());
    assertTypeName("Y", fRootNode.getTypeDefinition().getName());
    assertTypeNamespaceNull(fRootNode.getTypeDefinition().getNamespace());

    PSVIElementNSImpl child = super.getChild(1);
    assertValidity(ItemPSVI.VALIDITY_VALID, child.getValidity());
    assertValidationAttempted(ItemPSVI.VALIDATION_FULL, child
            .getValidationAttempted());
    assertElementNull(child.getElementDeclaration());
    assertTypeName("Y", child.getTypeDefinition().getName());
    assertTypeNamespaceNull(child.getTypeDefinition().getNamespace());
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:17,代码来源:IgnoreXSITypeTest_C_C.java


示例7: testUsingOnlyGrammarPool

import com.sun.org.apache.xerces.internal.xs.ItemPSVI; //导入依赖的package包/类
/**
 * The purpose of this test is to check if setting the USE_GRAMMAR_POOL_ONLY
 * feature to true causes external schemas to not be read. This
 * functionality already existed prior to adding the XSLT 2.0 validation
 * features; however, because the class that controlled it changed, this
 * test simply ensures that the existing functionality did not disappear.
 * -PM
 */
@Test
public void testUsingOnlyGrammarPool() {
    try {
        reset();
        validateDocument();
    } catch (Exception e) {
        fail("Validation failed: " + e.getMessage());
    }

    assertValidity(ItemPSVI.VALIDITY_VALID, fRootNode.getValidity());
    assertValidationAttempted(ItemPSVI.VALIDATION_FULL, fRootNode
            .getValidationAttempted());
    assertElementName("A", fRootNode.getElementDeclaration().getName());
    assertElementNamespace("xslt.unittests", fRootNode
            .getElementDeclaration().getNamespace());
    assertTypeName("W", fRootNode.getTypeDefinition().getName());
    assertTypeNamespace("xslt.unittests", fRootNode.getTypeDefinition()
            .getNamespace());
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:28,代码来源:UseGrammarPoolOnlyTest_False.java


示例8: testUsingOnlyGrammarPool

import com.sun.org.apache.xerces.internal.xs.ItemPSVI; //导入依赖的package包/类
/**
 * The purpose of this test is to check if setting the USE_GRAMMAR_POOL_ONLY
 * feature to true causes external schemas to not be read. This
 * functionality already existed prior to adding the XSLT 2.0 validation
 * features; however, because the class that controlled it changed, this
 * test simply ensures that the existing functionality did not disappear.
 * -PM
 */
@Test
public void testUsingOnlyGrammarPool() {
    try {
        reset();
        validateDocument();
    } catch (Exception e) {
        fail("Validation failed: " + e.getMessage());
    }

    assertValidity(ItemPSVI.VALIDITY_NOTKNOWN, fRootNode.getValidity());
    assertValidationAttempted(ItemPSVI.VALIDATION_NONE, fRootNode
            .getValidationAttempted());
    assertElementNull(fRootNode.getElementDeclaration());
    assertAnyType(fRootNode.getTypeDefinition());
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:24,代码来源:UseGrammarPoolOnlyTest_True.java


示例9: testDefault

import com.sun.org.apache.xerces.internal.xs.ItemPSVI; //导入依赖的package包/类
@Test
public void testDefault() {
    try {
        reset();
        validateDocument();
    } catch (Exception e) {
        fail("Validation failed: " + e.getMessage());
    }

    assertValidity(ItemPSVI.VALIDITY_VALID, fRootNode.getValidity());
    assertValidationAttempted(ItemPSVI.VALIDATION_FULL, fRootNode
            .getValidationAttempted());
    assertElementName("A", fRootNode.getElementDeclaration().getName());

    PSVIElementNSImpl child = super.getChild(1);
    assertValidity(ItemPSVI.VALIDITY_VALID, child.getValidity());
    assertValidationAttempted(ItemPSVI.VALIDATION_FULL, child
            .getValidationAttempted());
    assertElementName("B", child.getElementDeclaration().getName());

    child = super.getChild(2);
    assertValidity(ItemPSVI.VALIDITY_VALID, child.getValidity());
    assertValidationAttempted(ItemPSVI.VALIDATION_FULL, child
            .getValidationAttempted());
    assertElementName("D", child.getElementDeclaration().getName());
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:27,代码来源:FixedAttrTest.java


示例10: checkTrueResult

import com.sun.org.apache.xerces.internal.xs.ItemPSVI; //导入依赖的package包/类
private void checkTrueResult() {
    assertValidity(ItemPSVI.VALIDITY_NOTKNOWN, fRootNode.getValidity());
    assertValidationAttempted(ItemPSVI.VALIDATION_PARTIAL, fRootNode
            .getValidationAttempted());
    assertElementNull(fRootNode.getElementDeclaration());
    assertAnyType(fRootNode.getTypeDefinition());

    PSVIElementNSImpl child = super.getChild(1);
    assertValidity(ItemPSVI.VALIDITY_NOTKNOWN, child.getValidity());
    assertValidationAttempted(ItemPSVI.VALIDATION_NONE, child
            .getValidationAttempted());
    assertElementNull(child.getElementDeclaration());
    assertAnyType(child.getTypeDefinition());

    child = super.getChild(2);
    assertValidity(ItemPSVI.VALIDITY_VALID, child.getValidity());
    assertValidationAttempted(ItemPSVI.VALIDATION_FULL, child
            .getValidationAttempted());
    assertElementName("A", child.getElementDeclaration().getName());
    assertTypeName("Y", child.getTypeDefinition().getName());
    assertTypeNamespaceNull(child.getTypeDefinition().getNamespace());
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:23,代码来源:IgnoreXSITypeTest_C_CA.java


示例11: checkFalseResult

import com.sun.org.apache.xerces.internal.xs.ItemPSVI; //导入依赖的package包/类
private void checkFalseResult() {
    assertValidity(ItemPSVI.VALIDITY_VALID, fRootNode.getValidity());
    assertValidationAttempted(ItemPSVI.VALIDATION_FULL, fRootNode
            .getValidationAttempted());
    assertElementNull(fRootNode.getElementDeclaration());
    assertTypeName("Y", fRootNode.getTypeDefinition().getName());
    assertTypeNamespaceNull(fRootNode.getTypeDefinition().getNamespace());

    PSVIElementNSImpl child = super.getChild(1);
    assertValidity(ItemPSVI.VALIDITY_VALID, child.getValidity());
    assertValidationAttempted(ItemPSVI.VALIDATION_FULL, child
            .getValidationAttempted());
    assertElementNull(child.getElementDeclaration());
    assertTypeName("Y", child.getTypeDefinition().getName());
    assertTypeNamespaceNull(child.getTypeDefinition().getNamespace());

    child = super.getChild(2);
    assertValidity(ItemPSVI.VALIDITY_VALID, child.getValidity());
    assertValidationAttempted(ItemPSVI.VALIDATION_FULL, child
            .getValidationAttempted());
    assertElementName("A", child.getElementDeclaration().getName());
    assertTypeName("Y", child.getTypeDefinition().getName());
    assertTypeNamespaceNull(child.getTypeDefinition().getNamespace());
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:25,代码来源:IgnoreXSITypeTest_C_CA.java


示例12: checkTrueResult

import com.sun.org.apache.xerces.internal.xs.ItemPSVI; //导入依赖的package包/类
private void checkTrueResult() {
    assertValidity(ItemPSVI.VALIDITY_NOTKNOWN, fRootNode.getValidity());
    assertValidationAttempted(ItemPSVI.VALIDATION_PARTIAL, fRootNode
            .getValidationAttempted());
    assertElementNull(fRootNode.getElementDeclaration());
    assertAnyType(fRootNode.getTypeDefinition());

    PSVIElementNSImpl child = super.getChild(1);
    assertValidity(ItemPSVI.VALIDITY_VALID, child.getValidity());
    assertValidationAttempted(ItemPSVI.VALIDATION_FULL, child
            .getValidationAttempted());
    assertElementName("A", child.getElementDeclaration().getName());
    assertTypeName("Y", child.getTypeDefinition().getName());
    assertTypeNamespaceNull(child.getTypeDefinition().getNamespace());

    child = super.getChild(2);
    assertValidity(ItemPSVI.VALIDITY_NOTKNOWN, child.getValidity());
    assertValidationAttempted(ItemPSVI.VALIDATION_NONE, child
            .getValidationAttempted());
    assertElementNull(child.getElementDeclaration());
    assertAnyType(child.getTypeDefinition());
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:23,代码来源:IgnoreXSITypeTest_C_AC.java


示例13: checkFalseResult

import com.sun.org.apache.xerces.internal.xs.ItemPSVI; //导入依赖的package包/类
private void checkFalseResult() {
    assertValidity(ItemPSVI.VALIDITY_VALID, fRootNode.getValidity());
    assertValidationAttempted(ItemPSVI.VALIDATION_FULL, fRootNode
            .getValidationAttempted());
    assertElementNull(fRootNode.getElementDeclaration());
    assertTypeName("Y", fRootNode.getTypeDefinition().getName());
    assertTypeNamespaceNull(fRootNode.getTypeDefinition().getNamespace());

    PSVIElementNSImpl child = super.getChild(1);
    assertValidity(ItemPSVI.VALIDITY_VALID, child.getValidity());
    assertValidationAttempted(ItemPSVI.VALIDATION_FULL, child
            .getValidationAttempted());
    assertElementName("A", child.getElementDeclaration().getName());
    assertTypeName("Y", child.getTypeDefinition().getName());
    assertTypeNamespaceNull(child.getTypeDefinition().getNamespace());

    child = super.getChild(2);
    assertValidity(ItemPSVI.VALIDITY_VALID, child.getValidity());
    assertValidationAttempted(ItemPSVI.VALIDATION_FULL, child
            .getValidationAttempted());
    assertElementNull(child.getElementDeclaration());
    assertTypeName("Y", child.getTypeDefinition().getName());
    assertTypeNamespaceNull(child.getTypeDefinition().getNamespace());
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:25,代码来源:IgnoreXSITypeTest_C_AC.java


示例14: checkResult

import com.sun.org.apache.xerces.internal.xs.ItemPSVI; //导入依赖的package包/类
private void checkResult() {
    assertValidity(ItemPSVI.VALIDITY_VALID, fRootNode.getValidity());
    assertValidationAttempted(ItemPSVI.VALIDATION_FULL, fRootNode
            .getValidationAttempted());
    assertElementName("A", fRootNode.getElementDeclaration().getName());
    assertTypeName("Y", fRootNode.getTypeDefinition().getName());
    assertTypeNamespaceNull(fRootNode.getTypeDefinition().getNamespace());

    PSVIElementNSImpl child = super.getChild(1);
    assertValidity(ItemPSVI.VALIDITY_VALID, child.getValidity());
    assertValidationAttempted(ItemPSVI.VALIDATION_FULL, child
            .getValidationAttempted());
    assertElementName("A", child.getElementDeclaration().getName());
    assertTypeName("Y", child.getTypeDefinition().getName());
    assertTypeNamespaceNull(child.getTypeDefinition().getNamespace());
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:17,代码来源:IgnoreXSITypeTest_A_A.java


示例15: testSettingToEqualType

import com.sun.org.apache.xerces.internal.xs.ItemPSVI; //导入依赖的package包/类
@Test
public void testSettingToEqualType() {
    try {
        reset();
        fValidator.setProperty(ROOT_TYPE, typeX);
        validateDocument();
    } catch (Exception e) {
        fail("Validation failed: " + e.getMessage());
    }

    assertValidity(ItemPSVI.VALIDITY_VALID, fRootNode.getValidity());
    assertValidationAttempted(ItemPSVI.VALIDATION_FULL, fRootNode
            .getValidationAttempted());
    assertElementNull(fRootNode.getElementDeclaration());
    assertTypeName("X", fRootNode.getTypeDefinition().getName());
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:17,代码来源:RootTypeDefinitionTest.java


示例16: testSettingToDerivedType

import com.sun.org.apache.xerces.internal.xs.ItemPSVI; //导入依赖的package包/类
@Test
public void testSettingToDerivedType() {
    try {
        reset();
        // this is required to make it a valid type Y node
        ((PSVIElementNSImpl) fRootNode).setAttributeNS(null, "attr", "typeY");
        fValidator.setProperty(ROOT_TYPE, typeY);
        validateDocument();
    } catch (Exception e) {
        fail("Validation failed: " + e.getMessage());
    }

    assertValidity(ItemPSVI.VALIDITY_VALID, fRootNode.getValidity());
    assertValidationAttempted(ItemPSVI.VALIDATION_FULL, fRootNode
            .getValidationAttempted());
    assertElementNull(fRootNode.getElementDeclaration());
    assertTypeName("Y", fRootNode.getTypeDefinition().getName());
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:19,代码来源:RootTypeDefinitionTest.java


示例17: testSettingToNonDerivedType

import com.sun.org.apache.xerces.internal.xs.ItemPSVI; //导入依赖的package包/类
@Test
public void testSettingToNonDerivedType() {
    try {
        reset();
        fValidator.setProperty(ROOT_TYPE, typeZ);
        validateDocument();
    } catch (Exception e) {
        fail("Validation failed: " + e.getMessage());
    }

    assertValidity(ItemPSVI.VALIDITY_VALID, fRootNode.getValidity());
    assertValidationAttempted(ItemPSVI.VALIDATION_FULL, fRootNode
            .getValidationAttempted());
    assertElementNull(fRootNode.getElementDeclaration());
    assertTypeName("Z", fRootNode.getTypeDefinition().getName());
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:17,代码来源:RootTypeDefinitionTest.java


示例18: testSettingToOtherSchemaType

import com.sun.org.apache.xerces.internal.xs.ItemPSVI; //导入依赖的package包/类
@Test
public void testSettingToOtherSchemaType() {
    try {
        reset();
        ((PSVIElementNSImpl) fRootNode).setAttributeNS(SchemaSymbols.URI_XSI,
            SchemaSymbols.XSI_SCHEMALOCATION,
            "xslt.unittests otherNamespace.xsd");
        fValidator.setProperty(ROOT_TYPE, typeOtherNamespace);
        validateDocument();
    } catch (Exception e) {
        fail("Validation failed: " + e.getMessage());
    }

    assertValidity(ItemPSVI.VALIDITY_VALID, fRootNode.getValidity());
    assertValidationAttempted(ItemPSVI.VALIDATION_FULL, fRootNode
            .getValidationAttempted());
    assertElementNull(fRootNode.getElementDeclaration());
    assertTypeName("W", fRootNode.getTypeDefinition().getName());
    assertTypeNamespace("xslt.unittests", fRootNode.getTypeDefinition()
            .getNamespace());
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:22,代码来源:RootTypeDefinitionTest.java


示例19: testSettingTypeAndXSIType

import com.sun.org.apache.xerces.internal.xs.ItemPSVI; //导入依赖的package包/类
@Test
public void testSettingTypeAndXSIType() {
    try {
        reset();
        // this is required to make it a valid type Y node
        ((PSVIElementNSImpl) fRootNode).setAttributeNS(null, "attr", "typeY");
        ((PSVIElementNSImpl) fRootNode).setAttributeNS(SchemaSymbols.URI_XSI,
                SchemaSymbols.XSI_TYPE, "Y");
        fValidator.setProperty(ROOT_TYPE, typeX);
        validateDocument();
    } catch (Exception e) {
        fail("Validation failed: " + e.getMessage());
    }

    assertValidity(ItemPSVI.VALIDITY_VALID, fRootNode.getValidity());
    assertValidationAttempted(ItemPSVI.VALIDATION_FULL, fRootNode
            .getValidationAttempted());
    assertElementNull(fRootNode.getElementDeclaration());
    assertTypeName("Y", fRootNode.getTypeDefinition().getName());
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:21,代码来源:RootTypeDefinitionTest.java


示例20: testSettingTypeAndInvalidXSIType

import com.sun.org.apache.xerces.internal.xs.ItemPSVI; //导入依赖的package包/类
@Test
public void testSettingTypeAndInvalidXSIType() {
    try {
        reset();
        ((PSVIElementNSImpl) fRootNode).setAttributeNS(SchemaSymbols.URI_XSI,
                SchemaSymbols.XSI_TYPE, "Z");
        fValidator.setProperty(ROOT_TYPE, typeX);
        validateDocument();
    } catch (Exception e) {
        fail("Validation failed: " + e.getMessage());
    }

    assertError(INVALID_DERIVATION_ERROR);
    assertValidity(ItemPSVI.VALIDITY_INVALID, fRootNode.getValidity());
    assertValidationAttempted(ItemPSVI.VALIDATION_FULL, fRootNode
            .getValidationAttempted());
    assertElementNull(fRootNode.getElementDeclaration());
    assertTypeName("Z", fRootNode.getTypeDefinition().getName());
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:20,代码来源:RootTypeDefinitionTest.java



注:本文中的com.sun.org.apache.xerces.internal.xs.ItemPSVI类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java OptimizedAccessorFactory类代码示例发布时间:2022-05-23
下一篇:
Java Platform类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap