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

org.dellroad.stuff.vaadin7.BackedProperty Maven / Gradle / Ivy

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy