Package com.vaadin.tests.fields

Source Code of com.vaadin.tests.fields.FormOneToMany

package com.vaadin.tests.fields;

import com.vaadin.data.util.BeanItem;
import com.vaadin.tests.components.TestBase;
import com.vaadin.tests.util.Millionaire;
import com.vaadin.ui.Form;

public class FormOneToMany extends TestBase {

    @Override
    protected void setup() {
        final Form form = new Form();
        addComponent(form);
        form.setItemDataSource(createMillionaireItem());

        // TODO support adding, editing and removing secondary addresses
    }

    protected BeanItem<Millionaire> createMillionaireItem() {
        Millionaire person = new Millionaire("First", "Last", "foo@vaadin.com",
                "02-111 2222", "Ruukinkatu 2-4", 20540, "Turku");

        BeanItem<Millionaire> item = new BeanItem<Millionaire>(person);
        // add nested properties from address
        item.expandProperty("address");

        // TODO for now, hide secondary residences
        item.removeItemProperty("secondaryResidences");

        return item;
    }

    @Override
    protected String getDescription() {
        return "Form with an editable list of sub-objects.";
    }

    @Override
    protected Integer getTicketNumber() {
        return null;
    }

}
TOP

Related Classes of com.vaadin.tests.fields.FormOneToMany

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.