All Implemented Interfaces:
TagBase, Serializable, Cloneable

public class TextArea extends AbstractHtml
Since:
1.0.0
See Also:
  • Constructor Details

    • TextArea

      public TextArea(AbstractHtml base, AbstractAttribute... attributes)
      Parameters:
      base - i.e. parent tag of this tag
      attributes - An array of AbstractAttribute
      Since:
      1.0.0
  • Method Details

    • init

      protected void init()
      invokes only once per object
      Since:
      1.0.0
    • setChildText

      public void setChildText(String text)
      sets the child text for this tag.
      Parameters:
      text - String which needs to be shown as a child of this tag.
      Since:
      2.1.4
    • setChildText

      public void setChildText(boolean updateClient, String text)
      sets the child text for this tag.
      Parameters:
      updateClient - true to update client browser page if it is available. The default value is true but it will be ignored if there is no client browser page.
      text - String which needs to be shown as a child of this tag.
      Since:
      2.1.15
    • getChildText

      public String getChildText()
      gets the child text set for this tag.
      Returns:
      the child text set for this tag in string format. If there is no children/child text then will return empty string.
      Since:
      2.1.4