Package com.thoughtworks.xstream.io.naming

Examples of com.thoughtworks.xstream.io.naming.NameCoder


    /**
     * @deprecated As of 1.4
     */
    @Deprecated
    protected XmlFriendlyReplacer xmlFriendlyReplacer() {
        final NameCoder nameCoder = getNameCoder();
        return nameCoder instanceof XmlFriendlyReplacer ? (XmlFriendlyReplacer)nameCoder : null;
    }
View Full Code Here


    /**
     * @deprecated As of 1.4
     */
    protected XmlFriendlyReplacer xmlFriendlyReplacer() {
        NameCoder nameCoder = getNameCoder();
        return nameCoder instanceof XmlFriendlyReplacer ? (XmlFriendlyReplacer)nameCoder : null;
    }
View Full Code Here

TOP

Related Classes of com.thoughtworks.xstream.io.naming.NameCoder

Copyright © 2018 www.massapicom. 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.