All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sksamuel.jqm4gwt.form.elements.JQMPassword Maven / Gradle / Ivy

package com.sksamuel.jqm4gwt.form.elements;

/**
 * @author Stephen K Samuel [email protected] 18 May 2011 04:14:05
 * 
 *         An implementation of a standard HTML password input.
 * 
 */
public class JQMPassword extends JQMText {

	/**
	 * Creates a new {@link JQMPassword} with no label
	 */
	public JQMPassword() {
		this(null);
	}

	/**
	 * Creates a new {@link JQMPassword} with the given label text
	 */
	public JQMPassword(String text) {
		super(text);
		setType("password");
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy