com.vaadin.ui.
Class TextArea
java.lang.Object
com.vaadin.ui.AbstractComponent
com.vaadin.ui.AbstractField
com.vaadin.ui.AbstractTextField
com.vaadin.ui.TextArea
All Implemented Interfaces:
Buffered, BufferedValidatable, Property, Property.Editor, Property.ReadOnlyStatusChangeListener, Property.ReadOnlyStatusChangeNotifier, Property.ValueChangeListener, Property.ValueChangeNotifier, Property.Viewer, Validatable, Action.ShortcutNotifier, FieldEvents.BlurNotifier, FieldEvents.FocusNotifier, FieldEvents.TextChangeNotifier, MethodEventSource, Paintable, Sizeable, VariableOwner, Component, Component.Focusable, Field, Serializable, EventListener
- extends AbstractTextField
public class TextArea
A text field that supports multi line editing.
See Also:
Nested Class Summary |
---|
Nested classes/interfaces inherited from class com.vaadin.ui.AbstractTextField |
---|
AbstractTextField.TextChangeEventImpl, AbstractTextField.TextChangeEventMode |
Nested classes/interfaces inherited from class com.vaadin.ui.AbstractField |
---|
AbstractField.FocusShortcut, AbstractField.ReadOnlyStatusChangeEvent |
Nested classes/interfaces inherited from class com.vaadin.ui.AbstractComponent |
---|
AbstractComponent.ComponentErrorEvent, AbstractComponent.ComponentErrorHandler |
Nested classes/interfaces inherited from interface com.vaadin.ui.Field |
---|
Field.ValueChangeEvent |
Nested classes/interfaces inherited from interface com.vaadin.data.Buffered |
---|
Buffered.SourceException |
Nested classes/interfaces inherited from interface com.vaadin.data.Property |
---|
Property.ConversionException, Property.Editor, Property.ReadOnlyException, Property.ReadOnlyStatusChangeListener, Property.ReadOnlyStatusChangeNotifier, Property.ValueChangeListener, Property.ValueChangeNotifier, Property.Viewer |
Constructor Summary | |
---|---|
TextArea()
Constructs an empty TextArea. |
|
TextArea(Property dataSource)
Constructs a TextArea with given property data source. |
|
TextArea(String caption)
Constructs an empty TextArea with given caption. |
|
TextArea(String caption,
Property dataSource)
Constructs a TextArea with given caption and property data source. |
|
TextArea(String caption,
String value)
Constructs a TextArea with given caption and value. |
Method Summary | |
---|---|
int |
getRows()
Gets the number of rows in the text area. |
boolean |
isWordwrap()
Tests if the text area is in word-wrap mode. |
void |
paintContent(PaintTarget target)
Paints any needed component-specific things to the given UIDL stream. |
void |
setRows(int rows)
Sets the number of rows in the text area. |
void |
setWordwrap(boolean wordwrap)
Sets the text area's word-wrap mode on or off. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface com.vaadin.ui.Field |
---|
getDescription, setCaption, setDescription |
Constructor Detail |
---|
TextArea
public TextArea()
Constructs an empty TextArea.
TextArea
public TextArea(String caption)
- Parameters:
caption
- the caption for the field.
Constructs an empty TextArea with given caption.
TextArea
public TextArea(Property dataSource)
- Parameters:
dataSource
- the data source for the field
Constructs a TextArea with given property data source.
TextArea
public TextArea(String caption,
Property dataSource)
- Parameters:
caption
- the caption for the fielddataSource
- the data source for the field
Constructs a TextArea with given caption and property data source.
TextArea
public TextArea(String caption,
String value)
- Parameters:
caption
- the caption for the fieldvalue
- the value for the field
Constructs a TextArea with given caption and value.
Method Detail |
---|
setRows
public void setRows(int rows)
- Parameters:
rows
- the number of rows for this text area.
Sets the number of rows in the text area.
getRows
public int getRows()
- Returns:
- number of explicitly set rows.
Gets the number of rows in the text area.
setWordwrap
public void setWordwrap(boolean wordwrap)
- Parameters:
wordwrap
- the boolean value specifying if the text area should be in word-wrap mode.
Sets the text area's word-wrap mode on or off.
isWordwrap
public boolean isWordwrap()
- Returns:
true
if the component is in word-wrap mode,false
if not.
Tests if the text area is in word-wrap mode.
paintContent
public void paintContent(PaintTarget target)
throws PaintException
- Overrides:
paintContent
in classAbstractTextField
- Parameters:
target
- the target UIDL stream where the component should paint itself to- Throws:
PaintException
- if the paint operation failed.
Description copied from class: AbstractComponent
Paints any needed component-specific things to the given UIDL stream. The
more general AbstractComponent.paint(PaintTarget)
method handles all general
attributes common to all components, and it calls this method to paint
any component-specific attributes to the UIDL stream.