Package com.vaadin.tests.widgetset.client

Examples of com.vaadin.tests.widgetset.client.DelegateState


import com.vaadin.tests.widgetset.client.DelegateState;
import com.vaadin.ui.AbstractComponent;

public class DelegateToWidgetComponent extends AbstractComponent {
    public DelegateToWidgetComponent() {
        DelegateState state = getState();
        state.value1 = "My String";
        state.renamedValue2 = 42;
        state.setValue3(Boolean.TRUE);
        state.setRenamedValue4(Math.PI);
    }
View Full Code Here

TOP

Related Classes of com.vaadin.tests.widgetset.client.DelegateState

Copyright © 2018 www.massapicom. 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.