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

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

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

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

public class FloatTextBoxFormField extends TextBoxFormField<Float> {

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

    public FloatTextBoxFormField(final PTextBox textBox) {
        super(textBox, new FloatConverter());
    }
}
TOP

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

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.