本文整理汇总了Java中javax.xml.validation.Validator.reset方法的典型用法代码示例。如果您正苦于以下问题:Java Validator.reset方法的具体用法?Java Validator.reset怎么用?Java Validator.reset使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javax.xml.validation.Validator
的用法示例。
在下文中一共展示了Validator.reset方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testSecureProcessingFeaturePropagationAndReset
import javax.xml.validation.Validator; //导入方法依赖的package包/类
@Test
public void testSecureProcessingFeaturePropagationAndReset() throws Exception {
SchemaFactory factory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
boolean value;
value = factory.getFeature(XMLConstants.FEATURE_SECURE_PROCESSING);
//default is true for JDK
//assertFalse("Default value of feature on SchemaFactory should have been false.", value);
assertTrue("Default value of feature on SchemaFactory should have been false.", value);
factory.setFeature(XMLConstants.FEATURE_SECURE_PROCESSING, true);
Schema schema = makeSchema(factory, null);
Validator validator = schema.newValidator();
value = validator.getFeature(XMLConstants.FEATURE_SECURE_PROCESSING);
assertTrue("Value of feature on Validator should have been true.", value);
validator.setFeature(XMLConstants.FEATURE_SECURE_PROCESSING, false);
value = validator.getFeature(XMLConstants.FEATURE_SECURE_PROCESSING);
assertFalse("Value of feature on Validator should have been false.", value);
validator.reset();
value = validator.getFeature(XMLConstants.FEATURE_SECURE_PROCESSING);
assertTrue("After reset, value of feature on Validator should be true.", value);
}
示例2: testPropertyReset
import javax.xml.validation.Validator; //导入方法依赖的package包/类
@Test
public void testPropertyReset() throws Exception {
SchemaFactory factory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
Schema schema = makeSchema(factory, null);
Validator validator = schema.newValidator();
Object beforeReset = validator.getProperty(SECURITY_MANAGER);
validator.setProperty(SECURITY_MANAGER, null);
Object changed = validator.getProperty(SECURITY_MANAGER);
//for JDK, this is changed since by default the security manager is set
assertTrue("Property value should have changed after calling setProperty().", beforeReset != changed);
validator.reset();
Object afterReset = validator.getProperty(SECURITY_MANAGER);
assertTrue("Property value should be the same after calling reset()", beforeReset == afterReset);
}
示例3: testFeatureReset
import javax.xml.validation.Validator; //导入方法依赖的package包/类
@Test
public void testFeatureReset() throws Exception {
SchemaFactory factory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
Schema schema = makeSchema(factory, null);
Validator validator = schema.newValidator();
validator.setFeature(FEATURE_STRING_DEFAULT_TRUE, false);
validator.setFeature(FEATURE_STRING_DEFAULT_FALSE, true);
validator.reset();
boolean value = validator.getFeature(FEATURE_STRING_DEFAULT_TRUE);
assertTrue("After reset, value of feature on Validator should be true.", value);
value = validator.getFeature(FEATURE_STRING_DEFAULT_FALSE);
assertFalse("After reset, value of feature on Validator should be false.", value);
}