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 TextAreaTextArea.Paragraph. getTextArea()Methods in org.apache.pivot.wtk with parameters of type TextArea Modifier and Type Method Description voidTextAreaListener.Adapter. editableChanged(TextArea textArea)Deprecated.default voidTextAreaListener. editableChanged(TextArea textArea)Called when a text area's editable state has changed.voidTextAreaListener.Listeners. editableChanged(TextArea textArea)voidTextAreaListener.Adapter. maximumLengthChanged(TextArea textArea, int previousMaximumLength)Deprecated.voidTextAreaListener.Listeners. maximumLengthChanged(TextArea textArea, int previousMaximumLength)default voidTextAreaListener. maximumLengthChanged(TextArea textArea, int previousMaximumLength)Called when a text area's maximum length has changed.voidTextAreaContentListener.Adapter. paragraphInserted(TextArea textArea, int index)Deprecated.voidTextAreaContentListener.Listeners. paragraphInserted(TextArea textArea, int index)default voidTextAreaContentListener. paragraphInserted(TextArea textArea, int index)Called when a paragraph has been inserted into a text area's paragraph sequence.voidTextAreaContentListener.Adapter. paragraphsRemoved(TextArea textArea, int index, Sequence<TextArea.Paragraph> removed)Deprecated.voidTextAreaContentListener.Listeners. paragraphsRemoved(TextArea textArea, int index, Sequence<TextArea.Paragraph> removed)default voidTextAreaContentListener. paragraphsRemoved(TextArea textArea, int index, Sequence<TextArea.Paragraph> removed)Called when paragraphs have been removed from a text area's paragraph sequence.voidTextAreaSelectionListener.Listeners. selectionChanged(TextArea textArea, int previousSelectionStart, int previousSelectionLength)voidTextAreaSelectionListener. selectionChanged(TextArea textArea, int previousSelectionStart, int previousSelectionLength)Called when a text area's selection state has changed.voidTextAreaBindingListener.Adapter. textBindMappingChanged(TextArea textArea, TextArea.TextBindMapping previousTextBindMapping)Deprecated.voidTextAreaBindingListener.Listeners. textBindMappingChanged(TextArea textArea, TextArea.TextBindMapping previousTextBindMapping)default voidTextAreaBindingListener. textBindMappingChanged(TextArea textArea, TextArea.TextBindMapping previousTextBindMapping)Called when a text area's text bind mapping has changed.voidTextAreaBindingListener.Adapter. textBindTypeChanged(TextArea textArea, BindType previousTextBindType)Deprecated.voidTextAreaBindingListener.Listeners. textBindTypeChanged(TextArea textArea, BindType previousTextBindType)default voidTextAreaBindingListener. textBindTypeChanged(TextArea textArea, BindType previousTextBindType)Called when a text area's text bind type has changed.voidTextAreaContentListener.Adapter. textChanged(TextArea textArea)Deprecated.voidTextAreaContentListener.Listeners. textChanged(TextArea textArea)default voidTextAreaContentListener. textChanged(TextArea textArea)Called when a text area's text has changed.voidTextAreaBindingListener.Adapter. textKeyChanged(TextArea textArea, java.lang.String previousTextKey)Deprecated.voidTextAreaBindingListener.Listeners. textKeyChanged(TextArea textArea, java.lang.String previousTextKey)default voidTextAreaBindingListener. 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 classTableViewTextAreaCellRendererRenders 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 TextAreaTextAreaSkin. getTextArea()Methods in org.apache.pivot.wtk.skin with parameters of type TextArea Modifier and Type Method Description voidTextAreaSkin. editableChanged(TextArea textArea)voidTextAreaSkin. maximumLengthChanged(TextArea textArea, int previousMaximumLength)voidTextAreaSkin. paragraphInserted(TextArea textArea, int index)voidTextAreaSkin. paragraphsRemoved(TextArea textArea, int index, Sequence<TextArea.Paragraph> removed)voidTextAreaSkin. selectionChanged(TextArea textArea, int previousSelectionStart, int previousSelectionLength)voidTextAreaSkin. 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 theTextAreato stream to; uses the system default charset for conversion, and the default buffer size.TextAreaOutputStream(TextArea textAreaToUse, int lineBufferSizeToUse)Constructor given theTextAreato 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 theTextAreato 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 theTextAreato stream to, the charset to use for decoding the incoming bytes into characters, and the line buffer size to use.
-