Package com.thoughtworks.xstream.core.util

Examples of com.thoughtworks.xstream.core.util.ThreadSafePropertyEditor


    private final ThreadSafePropertyEditor editor;
    private final Class<?> type;

    public PropertyEditorCapableConverter(final Class<? extends PropertyEditor> propertyEditorType, final Class<?> type) {
        this.type = type;
        editor = new ThreadSafePropertyEditor(propertyEditorType, 2, 5);
    }
View Full Code Here


    private final ThreadSafePropertyEditor editor;
    private final Class type;

    public PropertyEditorCapableConverter(final Class propertyEditorType, final Class type) {
        this.type = type;
        editor = new ThreadSafePropertyEditor(propertyEditorType, 2, 5);
    }
View Full Code Here

TOP

Related Classes of com.thoughtworks.xstream.core.util.ThreadSafePropertyEditor

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.