Package com.thoughtworks.xstream.converters.javabean

Examples of com.thoughtworks.xstream.converters.javabean.JavaBeanConverter


     *
     * @since 1.4
     */
    public XStreamDriver(HierarchicalStreamDriver driver, String desc) {
        this.xstream = new XStream(driver);
        this.xstream.registerConverter(new JavaBeanConverter(this.xstream.getMapper()) {

            public boolean canConvert(Class type) {
                return type == OneBean.class || type == FiveBean.class;
            }
           
View Full Code Here

TOP

Related Classes of com.thoughtworks.xstream.converters.javabean.JavaBeanConverter

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.