You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

VPasswordField.java 363B

123456789101112131415161718192021
  1. /*
  2. @ITMillApache2LicenseForJavaFiles@
  3. */
  4. package com.vaadin.terminal.gwt.client.ui;
  5. import com.google.gwt.user.client.DOM;
  6. /**
  7. * This class represents a password field.
  8. *
  9. * @author IT Mill Ltd.
  10. *
  11. */
  12. public class VPasswordField extends VTextField {
  13. public VPasswordField() {
  14. super(DOM.createInputPassword());
  15. }
  16. }