6364656667686970
private boolean closed; public XMLStreamEventReader(XMLStreamReader reader) { this.reader = reader; this.allocator = new EventAllocator(); }
7172737475767778
public XMLStreamEventReader(XMLStreamReader reader, XMLEventAllocator allocator) { this.reader = reader; this.allocator = (allocator == null ? new EventAllocator() : allocator); }