Package com.ponysdk.ui.server.form2.formfield

Source Code of com.ponysdk.ui.server.form2.formfield.LongTextBoxFormField

package com.ponysdk.ui.server.form2.formfield;

import com.ponysdk.ui.server.basic.PTextBox;
import com.ponysdk.ui.server.form2.dataconverter.LongConverter;

public class LongTextBoxFormField extends TextBoxFormField<Long> {

    public LongTextBoxFormField() {
        this(new PTextBox());
    }

    public LongTextBoxFormField(final PTextBox textBox) {
        super(textBox, new LongConverter());
    }
}
TOP

Related Classes of com.ponysdk.ui.server.form2.formfield.LongTextBoxFormField

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.