com.vaadin.v7.data.util.converter.ConverterFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vaadin-compatibility-server Show documentation
Show all versions of vaadin-compatibility-server Show documentation
Vaadin 7 compatibility package for Vaadin 8
The newest version!
/*
* Copyright (C) 2000-2024 Vaadin Ltd
*
* This program is available under Vaadin Commercial License and Service Terms.
*
* See for the full
* license.
*/
package com.vaadin.v7.data.util.converter;
import com.vaadin.data.Binder;
import java.io.Serializable;
/**
* Factory interface for providing Converters based on a presentation type and a
* model type.
*
* @author Vaadin Ltd.
* @since 7.0
*
* @deprecated As of 8.0, no replacement available - provide explicit converters for {@link Binder}.
*/
@Deprecated
public interface ConverterFactory extends Serializable {
public Converter createConverter(
Class presentationType, Class modelType);
}