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

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

The newest version!

/*
 * Copyright (C) 2022 Archie L. Cobbs. All rights reserved.
 */

package org.dellroad.stuff.vaadin7;

import com.vaadin.data.Item;

/**
 * Extension of the {@link Item} interface for implementations that are backed by an underlying Java object.
 *
 * @param  the type of the underlying Java object
 */
@SuppressWarnings("serial")
public interface BackedItem extends Item {

    /**
     * Retrieve the underlying Java object.
     *
     * @return underlying Java object, never null
     */
    T getObject();
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy