org.dellroad.stuff.vaadin7.BackedProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dellroad-stuff-vaadin7 Show documentation
Show all versions of dellroad-stuff-vaadin7 Show documentation
DellRoad Stuff classes related to the Vaadin GUI framework.
The newest version!
/*
* Copyright (C) 2022 Archie L. Cobbs. All rights reserved.
*/
package org.dellroad.stuff.vaadin7;
import com.vaadin.data.Property;
/**
* Extension of the {@link Property} interface for implementations that are backed by an underlying Java object.
*
* @param the type of the underlying Java object
* @param the type of the property
*/
@SuppressWarnings("serial")
public interface BackedProperty extends Property {
/**
* Retrieve the underlying Java object.
*
* @return underlying Java object, never null
*/
T getObject();
}