XppDomDriver.java
/*
* Copyright (C) 2004, 2005, 2006 Joe Walnes.
* Copyright (C) 2006, 2007, 2008, 2009, 2011, 2014, 2018 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 07. March 2004 by Joe Walnes
*/
package com.thoughtworks.xstream.io.xml;
import org.xmlpull.v1.XmlPullParser;
import org.xmlpull.v1.XmlPullParserException;
import com.thoughtworks.xstream.io.HierarchicalStreamDriver;
import com.thoughtworks.xstream.io.naming.NameCoder;
/**
* A {@link HierarchicalStreamDriver} for XPP DOM using the XmlPullParserFactory to locate an parser.
*
* @author Joe Walnes
* @author Jörg Schaible
*/
public class XppDomDriver extends AbstractXppDomDriver {
public XppDomDriver() {
super(new XmlFriendlyNameCoder());
}
/**
* @since 1.4
*/
public XppDomDriver(final NameCoder nameCoder) {
super(nameCoder);
}
/**
* @since 1.2
* @deprecated As of 1.4, use {@link XppDomDriver#XppDomDriver(NameCoder)} instead.
*/
@Deprecated
public XppDomDriver(final XmlFriendlyReplacer replacer) {
super(replacer);
}
@Override
protected synchronized XmlPullParser createParser() throws XmlPullParserException {
return XppDriver.createDefaultParser();
}
}