Package com.vaadin.tests.push

Source Code of com.vaadin.tests.push.SendMultibyteCharacters

package com.vaadin.tests.push;

import com.vaadin.annotations.Push;
import com.vaadin.server.VaadinRequest;
import com.vaadin.tests.components.AbstractTestUI;
import com.vaadin.ui.TextArea;

@Push
public class SendMultibyteCharacters extends AbstractTestUI {

    @Override
    protected void setup(VaadinRequest request) {
        TextArea textArea = new TextArea();
        textArea.setImmediate(true);

        addComponent(textArea);
    }

    @Override
    protected Integer getTicketNumber() {
        return 14674;
    }
}
TOP

Related Classes of com.vaadin.tests.push.SendMultibyteCharacters

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.