Package com.vaadin.ui

Examples of com.vaadin.ui.NativeSelect.addListener()


    /** Create new NativeSelect with given caption and listener. */
    public NativeSelect nativeselect(String caption,
            Property.ValueChangeListener changeListener) {
        NativeSelect c = nativeselect(caption);
        c.addListener(changeListener);
        return c;
    }

    /** Create new Tree and add it to current component container. */
    public Tree tree() {
View Full Code Here

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.