TextFieldPeer is an interface that defines the basis for text fields.
public abstract interface java.awt.peer.TextFieldPeer extends java.awt.peer.TextComponentPeer { // Interface Methods public abstract Dimension getMinimumSize (int rows, int columns); public abstract Dimension getPreferredSize (int rows, int columns); public abstract Dimension minimumSize (int rows, int columns); public abstract Dimension preferredSize (int rows, int columns); public abstract void setEchoChar (char echoChar); public abstract void setEchoCharacter (char c); }
Number of rows within the text field's peer.
The minimum dimensions of a text field's peer of the given size.
Number of rows within the text field's peer.
The preferred dimensions of a text field's peer of the given size.
Number of rows within the text field's peer.
Replaced by getMinimumSize(int).
Number of rows within the text field's peer.
Replaced by getPreferredSize(int).
The character to display for all input.
Changes the character that is displayed to the user for every character he or she types in the text field.
The character to display for all input.
Replaced by setEchoChar(char).
Dimension, TextComponentPeer