Package com.thoughtworks.xstream.core

Examples of com.thoughtworks.xstream.core.ClassLoaderReference


    /**
     * @deprecated As of 1.4.5 use {@link #DynamicProxyConverter(Mapper, ClassLoaderReference)}
     */
    @Deprecated
    public DynamicProxyConverter(final Mapper mapper, final ClassLoader classLoader) {
        this(mapper, new ClassLoaderReference(classLoader));
    }
View Full Code Here


    /**
     * @deprecated As of 1.4.5 use {@link #JavaClassConverter(ClassLoaderReference)}
     */
    @Deprecated
    public JavaClassConverter(final ClassLoader classLoader) {
        this(new ClassLoaderReference(classLoader));
    }
View Full Code Here

     * @param classLoader the ClassLoader used by the XStream instance.
     * @deprecated As of 1.4.5 use {@link #DefaultMapper(ClassLoaderReference)}
     */
    @Deprecated
    public DefaultMapper(final ClassLoader classLoader) {
        this(new ClassLoaderReference(classLoader));
    }
View Full Code Here

     */
    @Deprecated
    public AnnotationMapper(
            final Mapper wrapped, final ConverterRegistry converterRegistry, final ConverterLookup converterLookup,
            final ClassLoader classLoader, final ReflectionProvider reflectionProvider, final JVM jvm) {
        this(wrapped, converterRegistry, converterLookup, new ClassLoaderReference(classLoader), reflectionProvider);
    }
View Full Code Here

TOP

Related Classes of com.thoughtworks.xstream.core.ClassLoaderReference

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.