Uses of Class
org.apache.pivot.wtk.TextArea
-
Packages that use TextArea Package Description org.apache.pivot.wtk Contains classes that define the structure and behavior of WTK user interface components.org.apache.pivot.wtk.content Contains classes representing component data, such as list items or table rows.org.apache.pivot.wtk.skin Contains common skins and abstract base classes for theme-specific skins.org.apache.pivot.wtk.util Utilities classes to provide helpers for some common operations. -
-
Uses of TextArea in org.apache.pivot.wtk
Methods in org.apache.pivot.wtk that return TextArea Modifier and Type Method Description TextArea
TextArea.Paragraph. getTextArea()
Methods in org.apache.pivot.wtk with parameters of type TextArea Modifier and Type Method Description void
TextAreaListener.Adapter. editableChanged(TextArea textArea)
Deprecated.default void
TextAreaListener. editableChanged(TextArea textArea)
Called when a text area's editable state has changed.void
TextAreaListener.Listeners. editableChanged(TextArea textArea)
void
TextAreaListener.Adapter. maximumLengthChanged(TextArea textArea, int previousMaximumLength)
Deprecated.void
TextAreaListener.Listeners. maximumLengthChanged(TextArea textArea, int previousMaximumLength)
default void
TextAreaListener. maximumLengthChanged(TextArea textArea, int previousMaximumLength)
Called when a text area's maximum length has changed.void
TextAreaContentListener.Adapter. paragraphInserted(TextArea textArea, int index)
Deprecated.void
TextAreaContentListener.Listeners. paragraphInserted(TextArea textArea, int index)
default void
TextAreaContentListener. paragraphInserted(TextArea textArea, int index)
Called when a paragraph has been inserted into a text area's paragraph sequence.void
TextAreaContentListener.Adapter. paragraphsRemoved(TextArea textArea, int index, Sequence<TextArea.Paragraph> removed)
Deprecated.void
TextAreaContentListener.Listeners. paragraphsRemoved(TextArea textArea, int index, Sequence<TextArea.Paragraph> removed)
default void
TextAreaContentListener. paragraphsRemoved(TextArea textArea, int index, Sequence<TextArea.Paragraph> removed)
Called when paragraphs have been removed from a text area's paragraph sequence.void
TextAreaSelectionListener.Listeners. selectionChanged(TextArea textArea, int previousSelectionStart, int previousSelectionLength)
void
TextAreaSelectionListener. selectionChanged(TextArea textArea, int previousSelectionStart, int previousSelectionLength)
Called when a text area's selection state has changed.void
TextAreaBindingListener.Adapter. textBindMappingChanged(TextArea textArea, TextArea.TextBindMapping previousTextBindMapping)
Deprecated.void
TextAreaBindingListener.Listeners. textBindMappingChanged(TextArea textArea, TextArea.TextBindMapping previousTextBindMapping)
default void
TextAreaBindingListener. textBindMappingChanged(TextArea textArea, TextArea.TextBindMapping previousTextBindMapping)
Called when a text area's text bind mapping has changed.void
TextAreaBindingListener.Adapter. textBindTypeChanged(TextArea textArea, BindType previousTextBindType)
Deprecated.void
TextAreaBindingListener.Listeners. textBindTypeChanged(TextArea textArea, BindType previousTextBindType)
default void
TextAreaBindingListener. textBindTypeChanged(TextArea textArea, BindType previousTextBindType)
Called when a text area's text bind type has changed.void
TextAreaContentListener.Adapter. textChanged(TextArea textArea)
Deprecated.void
TextAreaContentListener.Listeners. textChanged(TextArea textArea)
default void
TextAreaContentListener. textChanged(TextArea textArea)
Called when a text area's text has changed.void
TextAreaBindingListener.Adapter. textKeyChanged(TextArea textArea, java.lang.String previousTextKey)
Deprecated.void
TextAreaBindingListener.Listeners. textKeyChanged(TextArea textArea, java.lang.String previousTextKey)
default void
TextAreaBindingListener. textKeyChanged(TextArea textArea, java.lang.String previousTextKey)
Called when a text area's text key has changed. -
Uses of TextArea in org.apache.pivot.wtk.content
Subclasses of TextArea in org.apache.pivot.wtk.content Modifier and Type Class Description class
TableViewTextAreaCellRenderer
Renders cell contents as a string using a text area (which supports line feeds, which the default label-based table view cell renderer does not). -
Uses of TextArea in org.apache.pivot.wtk.skin
Methods in org.apache.pivot.wtk.skin that return TextArea Modifier and Type Method Description TextArea
TextAreaSkin. getTextArea()
Methods in org.apache.pivot.wtk.skin with parameters of type TextArea Modifier and Type Method Description void
TextAreaSkin. editableChanged(TextArea textArea)
void
TextAreaSkin. maximumLengthChanged(TextArea textArea, int previousMaximumLength)
void
TextAreaSkin. paragraphInserted(TextArea textArea, int index)
void
TextAreaSkin. paragraphsRemoved(TextArea textArea, int index, Sequence<TextArea.Paragraph> removed)
void
TextAreaSkin. selectionChanged(TextArea textArea, int previousSelectionStart, int previousSelectionLength)
void
TextAreaSkin. textChanged(TextArea textArea)
-
Uses of TextArea in org.apache.pivot.wtk.util
Constructors in org.apache.pivot.wtk.util with parameters of type TextArea Constructor Description TextAreaOutputStream(TextArea textAreaToUse)
Simple constructor given theTextArea
to stream to; uses the system default charset for conversion, and the default buffer size.TextAreaOutputStream(TextArea textAreaToUse, int lineBufferSizeToUse)
Constructor given theTextArea
to stream to, and the non-default line buffer size to use; uses the system default charset.TextAreaOutputStream(TextArea textAreaToUse, java.nio.charset.Charset charsetToUse)
Constructor given theTextArea
to stream to, and the charset to use for decoding the incoming bytes into characters; uses the default line buffer size.TextAreaOutputStream(TextArea textAreaToUse, java.nio.charset.Charset charsetToUse, int lineBufferSizeToUse)
Constructor given theTextArea
to stream to, the charset to use for decoding the incoming bytes into characters, and the line buffer size to use.
-