com.thoughtworks.xstream.io.xml.KXml2DomDriver Maven / Gradle / Ivy
/*
* Copyright (C) 2009, 2011 XStream Committers.
* All rights reserved.
*
* The software in this package is published under the terms of the BSD
* style license a copy of which has been included with this distribution in
* the LICENSE.txt file.
*
* Created on 03. May 2009 by Joerg Schaible
*/
package com.thoughtworks.xstream.io.xml;
import com.thoughtworks.xstream.io.HierarchicalStreamDriver;
import com.thoughtworks.xstream.io.naming.NameCoder;
import org.kxml2.io.KXmlParser;
import org.xmlpull.v1.XmlPullParser;
/**
* A {@link HierarchicalStreamDriver} for XPP DOM using the kXML2 parser.
*
* @author Jörg Schaible
* @since 1.4
*/
public class KXml2DomDriver extends AbstractXppDomDriver {
/**
* Construct an KXml2DomDriver.
*
* @since 1.4
*/
public KXml2DomDriver() {
super(new XmlFriendlyNameCoder());
}
/**
* Construct a KXml2DomDriver.
*
* @param nameCoder the replacer for XML friendly names
* @since 1.4
*/
public KXml2DomDriver(NameCoder nameCoder) {
super(nameCoder);
}
/**
* {@inheritDoc}
*/
protected XmlPullParser createParser() {
return new KXmlParser();
}
}