Package com.vaadin.tests.components.combobox

Source Code of com.vaadin.tests.components.combobox.ComboxBoxErrorMessage

package com.vaadin.tests.components.combobox;

import com.vaadin.tests.components.TestBase;
import com.vaadin.ui.ComboBox;

public class ComboxBoxErrorMessage extends TestBase {

    @Override
    protected void setup() {
        ComboBox cb = new ComboBox("");
        cb.setRequired(true);
        cb.setRequiredError("You must select something");
        addComponent(cb);
    }

    @Override
    protected String getDescription() {
        return "The ComboBox should show an \"You must select something\" tooltip when the cursor is hovering it. Both when hovering the textfield and the dropdown button.";
    }

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

}
TOP

Related Classes of com.vaadin.tests.components.combobox.ComboxBoxErrorMessage

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.