/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package com.dhaval.web.vaadin.simple;

import com.vaadin.data.Item;
import com.vaadin.data.Property;
import java.io.Serializable;
import java.util.Collection;

/**
 *
 * @author dhaval
 */
public class GenericItem implements Item, Serializable{

    public Property getItemProperty(Object id) {
        throw new UnsupportedOperationException("Not supported yet.");
    }

    public Collection<?> getItemPropertyIds() {
        throw new UnsupportedOperationException("Not supported yet.");
    }

    public boolean addItemProperty(Object id, Property property) throws UnsupportedOperationException {
        throw new UnsupportedOperationException("Not supported yet.");
    }

    public boolean removeItemProperty(Object id) throws UnsupportedOperationException {
        throw new UnsupportedOperationException("Not supported yet.");
    }

}
