All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cucumber.runtime.xstream.SingleValueConverterWrapperExt Maven / Gradle / Ivy

There is a newer version: 7.18.1
Show newest version
package cucumber.runtime.xstream;

import cucumber.deps.com.thoughtworks.xstream.converters.SingleValueConverter;
import cucumber.deps.com.thoughtworks.xstream.converters.SingleValueConverterWrapper;

/**
 * Subclass that exposes the wrapped converter
 */
class SingleValueConverterWrapperExt extends SingleValueConverterWrapper {
    private final SingleValueConverter converter;

    public SingleValueConverterWrapperExt(SingleValueConverter converter) {
        super(converter);
        this.converter = converter;
    }

    public SingleValueConverter getConverter() {
        return converter;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy