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

com.vaadin.v7.data.util.converter.ConverterFactory Maven / Gradle / Ivy

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);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy