本文整理汇总了Java中javax.xml.validation.ValidatorHandler.getTypeInfoProvider方法的典型用法代码示例。如果您正苦于以下问题:Java ValidatorHandler.getTypeInfoProvider方法的具体用法?Java ValidatorHandler.getTypeInfoProvider怎么用?Java ValidatorHandler.getTypeInfoProvider使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javax.xml.validation.ValidatorHandler
的用法示例。
在下文中一共展示了ValidatorHandler.getTypeInfoProvider方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: parseAndAssertInstance
import javax.xml.validation.ValidatorHandler; //导入方法依赖的package包/类
private XmlConfigHandler parseAndAssertInstance(String xmlInstance) throws SAXException, IOException {
InputStream schemaStream = XmlConfigHandlerTest.class.getResourceAsStream(CONFIG_TEST_2_XSD);
XMLSchemaFactory xmlSchemaFactory = new XMLSchemaFactory();
Schema schema = xmlSchemaFactory.newSchema(new StreamSource(schemaStream));
ValidatorHandler validatorHandler = schema.newValidatorHandler();
final TypeInfoProvider typeInfoProvider = validatorHandler.getTypeInfoProvider();
XmlConfigHandler xmlConfigHandler = new XmlConfigHandler(typeInfoProvider);
validatorHandler.setContentHandler(xmlConfigHandler);
XMLReader parser = XMLReaderFactory.createXMLReader();
parser.setContentHandler(validatorHandler);
InputStream xmlStream = XmlConfigHandlerTest.class.getResourceAsStream(xmlInstance);
parser.parse(new InputSource(xmlStream));
assertInstance(validatorHandler, xmlConfigHandler, xmlInstance);
return xmlConfigHandler;
}
示例2: readTypeForProperty
import javax.xml.validation.ValidatorHandler; //导入方法依赖的package包/类
private TypeInfo readTypeForProperty(final String propertyName) throws SAXException, IOException {
InputStream schemaStream = XmlConfigHandlerTest.class.getResourceAsStream(CONFIG_TEST_2_XSD);
XMLSchemaFactory xmlSchemaFactory = new XMLSchemaFactory();
Schema schema = xmlSchemaFactory.newSchema(new StreamSource(schemaStream));
final AtomicReference<TypeInfo> propertyTypeInfo = new AtomicReference<TypeInfo>();
ValidatorHandler validatorHandler = schema.newValidatorHandler();
final TypeInfoProvider typeInfoProvider = validatorHandler.getTypeInfoProvider();
validatorHandler.setContentHandler(new DefaultHandler() {
@Override
public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException {
if (propertyName.equals(localName)) {
propertyTypeInfo.set(typeInfoProvider.getElementTypeInfo());
}
}
});
XMLReader parser = XMLReaderFactory.createXMLReader();
parser.setContentHandler(validatorHandler);
InputStream xmlStream = XmlConfigHandlerTest.class.getResourceAsStream(CONFIG_TEST_2_XML);
parser.parse(new InputSource(xmlStream));
return propertyTypeInfo.get();
}
示例3: test
import javax.xml.validation.ValidatorHandler; //导入方法依赖的package包/类
@Test
public void test() throws Exception {
XMLReader xmlReader = createXMLReader();
final ValidatorHandler validatorHandler = createValidatorHandler(XSD);
xmlReader.setContentHandler(validatorHandler);
DefaultHandler handler = new DefaultHandler() {
public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException {
if (!"ns:test".equals(qName)) {
return;
}
TypeInfoProvider infoProvider = validatorHandler.getTypeInfoProvider();
if (infoProvider == null) {
throw new SAXException("Can't obtain TypeInfoProvider object.");
}
int index = attributes.getIndex("id");
if (index == -1) {
throw new SAXException("The attribute 'id' is not in the list.");
}
Assert.assertTrue(infoProvider.isSpecified(index));
index = attributes.getIndex("date");
if (index == -1) {
throw new SAXException("The attribute 'date' is not in the list.");
}
Assert.assertFalse(infoProvider.isSpecified(index));
System.out.println("OK");
}
};
validatorHandler.setContentHandler(handler);
parse(xmlReader, XML);
}
示例4: test1
import javax.xml.validation.ValidatorHandler; //导入方法依赖的package包/类
@Test
public void test1() throws Exception {
XMLReader xmlReader = createXMLReader();
final ValidatorHandler validatorHandler = createValidatorHandler(XSD);
xmlReader.setContentHandler(validatorHandler);
DefaultHandler handler = new DefaultHandler() {
public void characters(char[] ch, int start, int length) throws SAXException {
TypeInfoProvider infoProvider = null;
synchronized (validatorHandler) {
infoProvider = validatorHandler.getTypeInfoProvider();
}
if (infoProvider == null) {
Assert.fail("Can't obtain TypeInfo object.");
}
try {
infoProvider.getElementTypeInfo();
Assert.fail("IllegalStateException was not thrown.");
} catch (IllegalStateException e) {
// as expected
System.out.println("OK");
}
}
};
validatorHandler.setContentHandler(handler);
parse(xmlReader, XML);
}
示例5: JAXPValidatorComponent
import javax.xml.validation.ValidatorHandler; //导入方法依赖的package包/类
/**
* @param validatorHandler may not be null.
*/
public JAXPValidatorComponent( ValidatorHandler validatorHandler ) {
this.validator = validatorHandler;
TypeInfoProvider tip = validatorHandler.getTypeInfoProvider();
if(tip==null) tip = noInfoProvider;
this.typeInfoProvider = tip;
// configure wiring between internal components.
xni2sax.setContentHandler(validator);
validator.setContentHandler(sax2xni);
this.setSide(xni2sax);
// configure validator with proper EntityResolver/ErrorHandler.
validator.setErrorHandler(new ErrorHandlerProxy() {
protected XMLErrorHandler getErrorHandler() {
XMLErrorHandler handler = fErrorReporter.getErrorHandler();
if(handler!=null) return handler;
return new ErrorHandlerWrapper(DraconianErrorHandler.getInstance());
}
});
validator.setResourceResolver(new LSResourceResolver() {
public LSInput resolveResource(String type,String ns, String publicId, String systemId, String baseUri) {
if(fEntityResolver==null) return null;
try {
XMLInputSource is = fEntityResolver.resolveEntity(
new XMLResourceIdentifierImpl(publicId,systemId,baseUri,null));
if(is==null) return null;
LSInput di = new DOMInputImpl();
di.setBaseURI(is.getBaseSystemId());
di.setByteStream(is.getByteStream());
di.setCharacterStream(is.getCharacterStream());
di.setEncoding(is.getEncoding());
di.setPublicId(is.getPublicId());
di.setSystemId(is.getSystemId());
return di;
} catch( IOException e ) {
// erors thrown by the callback is not supposed to be
// reported to users.
throw new XNIException(e);
}
}
});
}
示例6: JAXPValidatorComponent
import javax.xml.validation.ValidatorHandler; //导入方法依赖的package包/类
/**
* @param validatorHandler may not be null.
*/
public JAXPValidatorComponent( ValidatorHandler validatorHandler ) {
this.validator = validatorHandler;
TypeInfoProvider tip = validatorHandler.getTypeInfoProvider();
if(tip==null) tip = noInfoProvider;
this.typeInfoProvider = tip;
// configure wiring between internal components.
xni2sax.setContentHandler(validator);
validator.setContentHandler(sax2xni);
this.setSide(xni2sax);
// configure validator with proper EntityResolver/ErrorHandler.
validator.setErrorHandler(new ErrorHandlerProxy() {
protected XMLErrorHandler getErrorHandler() {
XMLErrorHandler handler = fErrorReporter.getErrorHandler();
if(handler!=null) return handler;
return new ErrorHandlerWrapper(DraconianErrorHandler.getInstance());
}
});
validator.setResourceResolver(new LSResourceResolver() {
public LSInput resolveResource(String type,String ns, String publicId, String systemId, String baseUri) {
if(fEntityResolver==null) return null;
try {
XMLInputSource is = fEntityResolver.resolveEntity(
new XMLResourceIdentifierImpl(publicId,systemId,baseUri,null));
if(is==null) return null;
LSInput di = new DOMInputImpl();
di.setBaseURI(is.getBaseSystemId());
di.setByteStream(is.getByteStream());
di.setCharacterStream(is.getCharacterStream());
di.setEncoding(is.getEncoding());
di.setPublicId(is.getPublicId());
di.setSystemId(is.getSystemId());
return di;
} catch( IOException e ) {
// erors thrown by the callback is not supposed to be
// reported to users.
throw new XNIException(e);
}
}
});
}