Examples of CGLIBMapper


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
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.