Create a password text field : Text « SWT « Java Tutorial






Create a password text field
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Text;

public class PasswordFieldTextExample {
  public static void main(String[] args) {
    Display display = new Display();
    Shell shell = new Shell(display);
    shell.setLayout(new GridLayout(1, false));


    // Create a password text field
    new Text(shell, SWT.PASSWORD | SWT.BORDER);


    shell.open();
    while (!shell.isDisposed()) {
      if (!display.readAndDispatch()) {
        display.sleep();
      }
    }
    display.dispose();
  }
}








17.15.Text
17.15.1.Introducing Text and Text Styles
17.15.2.Create a single-line text fieldCreate a single-line text field
17.15.3.Create a right-aligned single-line text fieldCreate a right-aligned single-line text field
17.15.4.Create a password text fieldCreate a password text field
17.15.5.Create a read-only text fieldCreate a read-only text field
17.15.6.Create a multiple-line text fieldCreate a multiple-line text field
17.15.7.Change Text FontChange Text Font
17.15.8.Set the selection (start, end)Set the selection (start, end)
17.15.9.Get Caret PositionGet Caret Position
17.15.10.Append line to TextAppend line to Text
17.15.11.Set size for TextSet size for Text
17.15.12.Select all text in TextSelect all text in Text
17.15.13.Resize a text controlResize a text control
17.15.14.Text: type in one text, output to anotherText: type in one text, output to another
17.15.15.Prevent Tab from traversing out of a controlPrevent Tab from traversing out of a control
17.15.16.Draw on the background of TextDraw on the background of Text