TextAreaPeer is an interface that defines the basis for text areas.
public abstract interface java.awt.peer.TextAreaPeer 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 void insert (String string, int position); public abstract void insertText (String string, int position); public abstract Dimension minimumSize (int rows, int columns); public abstract Dimension preferredSize (int rows, int columns); public abstract void replaceRange (String string, int startPosition, int endPosition); public abstract void replaceText (String string, int startPosition, int endPosition); }
Number of rows within the text area's peer.
Number of columns within the text area's peer.
The minimum dimensions of a text area's peer of the given size.
Number of rows within the text area's peer.
Number of columns within the text area's peer.
The preferred dimensions of a text area's peer of the given size.
Content to place within the text area's peer.
Location at which to insert the content.
Places additional text within the text area's peer.
Content to place within the text area's peer.
Location at which to insert the content.
Places additional text within the text area's peer. Replaced by insert(String, int).
Number of rows within the text area's peer.
Number of columns within the text area's peer.
The minimum dimensions of a text area's peer of the given size. Replaced by getMinimumSize(int, int).
Number of rows within the text area's peer.
Number of columns within the text area's peer.
The preferred dimensions of a text area's peer of the given size. Replaced by getPreferredSize(int, int).
New content to place in the text area's peer.
Starting position of the content to replace.
Ending position of the content to replace.
Replaces a portion of the text area peer's content with the given text.
New content to place in the text area's peer.
Starting position of the content to replace.
Ending position of the content to replace.
Replaces a portion of the text area peer's content with the given text. Replaced by replaceRange(String, int, int).
Dimension, String, TextComponentPeer