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

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

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

import com.ponysdk.ui.server.basic.PPasswordTextBox;
import com.ponysdk.ui.server.form2.dataconverter.IdentityConverter;

public class StringPasswordTextBoxFormField extends PasswordTextBoxFormField<String> {

    public StringPasswordTextBoxFormField() {
        this(new PPasswordTextBox());
    }

    public StringPasswordTextBoxFormField(final PPasswordTextBox textBox) {
        super(textBox, IdentityConverter.STRING);
    }

    @Override
    public String getValue() {
        final String v = super.getValue();
        if (v == null || v.isEmpty()) return null;
        return v;
    }
}
TOP

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

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.