Example usage for com.vaadin.v7.data Item interface-usage

List of usage examples for com.vaadin.v7.data Item interface-usage

Introduction

In this page you can find the example usage for com.vaadin.v7.data Item interface-usage.

Usage

From source file com.haulmont.cuba.web.gui.components.table.TableItemWrapper.java

@SuppressWarnings("deprecation")
public class TableItemWrapper implements Item {
    protected Object itemId;
    protected Map<Object, TableItemPropertyWrapper> propertyWrappers = new HashMap<>();

    protected TableDataContainer tableDataContainer;

From source file org.jpos.qi.EntityItem.java

public class EntityItem<T> implements Item {
    protected T entity;
    Map<String, Class> properties;

    public EntityItem(T entity, Map<String, Class> properties) {
        this.entity = entity;