Package com.thoughtworks.xstream.io

Source Code of com.thoughtworks.xstream.io.AbstractDriver

/*
* 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 15. August 2009 by Joerg Schaible
*/
package com.thoughtworks.xstream.io;

import com.thoughtworks.xstream.io.naming.NameCoder;
import com.thoughtworks.xstream.io.naming.NoNameCoder;


/**
* Abstract base class for all HierarchicalStreamDriver implementations. Implementations of
* {@link HierarchicalStreamDriver} should rather be derived from this class then implementing
* the interface directly.
*
* @author Jörg Schaible
* @since 1.4
*/
public abstract class AbstractDriver implements HierarchicalStreamDriver {

    private NameCoder replacer;

    /**
     * Creates an AbstractDriver with a NameCoder that does nothing.
     */
    public AbstractDriver() {
        this(new NoNameCoder());
    }

    /**
     * Creates an AbstractDriver with a provided {@link NameCoder}.
     *
     * @param nameCoder the name coder for the target format
     */
    public AbstractDriver(NameCoder nameCoder) {
        this.replacer = nameCoder;
    }

    protected NameCoder getNameCoder() {
        return replacer;
    }
}
TOP

Related Classes of com.thoughtworks.xstream.io.AbstractDriver

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.