Package com.thoughtworks.xstream.mapper

Examples of com.thoughtworks.xstream.mapper.CGLIBMapper


public class CglibCompatibilityTest extends AbstractAcceptanceTest {

    protected XStream createXStream() {
        XStream xstream = new XStream(createDriver()) {
            protected MapperWrapper wrapMapper(MapperWrapper next) {
                return new CGLIBMapper(next);
            }
        };
        xstream.registerConverter(new CGLIBEnhancedConverter(xstream.getMapper(), xstream
            .getReflectionProvider(), xstream.getClassLoader()));
        return xstream;
View Full Code Here

TOP

Related Classes of com.thoughtworks.xstream.mapper.CGLIBMapper

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.