Package org.gwtoolbox.widget.client.form.field

Source Code of org.gwtoolbox.widget.client.form.field.PasswordField

package org.gwtoolbox.widget.client.form.field;

import org.gwtoolbox.widget.client.form.editor.PasswordEditor;

/**
* @author Uri Boness
*/
public class PasswordField extends BasicFormField<String> {

    public PasswordField(String key, String label) {
        super(key, String.class, label, new PasswordEditor());
    }
}
TOP

Related Classes of org.gwtoolbox.widget.client.form.field.PasswordField

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.