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

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

/*
* 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.XomDriver;

/**
* Uses XStream with the XOM 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 XomDriver
*/
public class XStreamXom extends XStreamDriver {

    public XStreamXom() {
        super(new XomDriver(), "XML with XOM parser");
    }
}
TOP

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

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.