javax.swing.text.PasswordView Java Examples

The following examples show how to use javax.swing.text.PasswordView. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: DarkPasswordFieldUIBridge.java    From darklaf with MIT License 4 votes vote down vote up
@Override
public View create(final Element elem) {
    return new PasswordView(elem);
}
 
Example #2
Source File: SeaGlassPasswordFieldUI.java    From seaglass with Apache License 2.0 2 votes vote down vote up
/**
 * Creates a view (PasswordView) for an element.
 *
 * @param  elem the element
 *
 * @return the view
 */
public View create(Element elem) {
    return new PasswordView(elem);
}