8687888990919293949596
throws Exception { assertNotNull( new XMLNodeReaderImpl<Node>( new SimpleNodeFactory(), new XMLPropertiesReaderImpl( new XMLPropertyReaderImpl() ), XMLNode.NODE_ELEMENT_QNAME, Node.NODE_TYPE_URI )
8889909192939495969798
{ assertNotNull( new XMLIterableNodeReaderImpl<Node>( new XMLNodeReaderImpl<Node>( new SimpleNodeFactory(), new XMLPropertiesReaderImpl( new XMLPropertyReaderImpl() ), XMLNode.NODE_ELEMENT_QNAME, Node.NODE_TYPE_URI ),
66676869707172737475
*/ public XMLNodeReaderImpl(final URI type) { this( null, new XMLPropertiesReaderImpl(), XMLNode.NODE_ELEMENT_QNAME, type ); }
80818283848586878889
*/ public XMLNodeReaderImpl(final QName qname, final URI type) { this( null, new XMLPropertiesReaderImpl(), qname, type ); }
949596979899100101102103
*/ public XMLNodeReaderImpl(final NodeFactory<N> nodefactory) { this( nodefactory, new XMLPropertiesReaderImpl(), XMLNode.NODE_ELEMENT_QNAME, nodefactory.type() ); }
108109110111112113114115116117
*/ public XMLNodeReaderImpl(final NodeFactory<N> nodefactory, final QName qname) { this( nodefactory, new XMLPropertiesReaderImpl(), qname, nodefactory.type() ); }
122123124125126127128129130131
*/ public XMLNodeReaderImpl(final NodeFactory<N> nodefactory, final URI type) { this( nodefactory, new XMLPropertiesReaderImpl(), XMLNode.NODE_ELEMENT_QNAME, type ); }
136137138139140141142143144145
*/ public XMLNodeReaderImpl(final NodeFactory<N> nodefactory, final URI type, final QName qname) { this( nodefactory, new XMLPropertiesReaderImpl(), qname, type ); }
71727374757677787980
public NestedXMLNodeReaderImpl(final NodeFactory<Outer> nodefactory, final XMLNodeReader<Inner> nodereader) { this( nodefactory, nodereader, new XMLPropertiesReaderImpl(), XMLNode.NODE_ELEMENT_QNAME, nodefactory.type() ); }