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

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

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

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

public class DoubleTextBoxFormField extends TextBoxFormField<Double> {

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

    public DoubleTextBoxFormField(final PTextBox textBox) {
        super(textBox, new DoubleConverter());
    }
}
TOP

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

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.