com.vaadin.v7.data.BufferedValidatable 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
/*
* 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;
import com.vaadin.data.Binder;
/**
*
* This interface defines the combination of Validatable
and
* Buffered
interfaces. The combination of the interfaces defines
* if the invalid data is committed to datasource.
*
*
* @author Vaadin Ltd.
* @since 3.0
* @deprecated As of 8.0, no direct replacement available. See {@link Binder}, {@link com.vaadin.data.Validator}.
*/
@Deprecated
public interface BufferedValidatable
extends Buffered, Validatable {
/**
* Tests if the invalid data is committed to datasource. The default is
* false
.
*/
public boolean isInvalidCommitted();
/**
* Sets if the invalid data should be committed to datasource. The default
* is false
.
*/
public void setInvalidCommitted(boolean isCommitted);
}