Package com.thoughtworks.xstream.tools.benchmark.products

Source Code of com.thoughtworks.xstream.tools.benchmark.products.XStreamSjsxp

/*
* Copyright (C) 2009 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 30. April 2009 by Joerg Schaible
*/
package com.thoughtworks.xstream.tools.benchmark.products;

import com.thoughtworks.xstream.io.xml.SjsxpDriver;

/**
* Uses XStream with the SJSXP StAX driver for parsing XML.
*
* @author Joe Walnes
* @author Jörg Schaible
* @see com.thoughtworks.xstream.tools.benchmark.Harness
* @see com.thoughtworks.xstream.tools.benchmark.Product
* @see com.thoughtworks.xstream.XStream
* @see SjsxpDriver
*/
public class XStreamSjsxp extends XStreamDriver {

    public XStreamSjsxp() {
        super(new SjsxpDriver(), "XML with SJSXP StAX parser");
    }
}
TOP

Related Classes of com.thoughtworks.xstream.tools.benchmark.products.XStreamSjsxp

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.