All Implemented Interfaces:
Component, InputComponent, LabeledComponent, TextArea, DataComponent

@Deprecated public class TextAreaImpl extends AbstractDataComponent<TextArea> implements TextArea
Deprecated.
  • Constructor Details

    • TextAreaImpl

      public TextAreaImpl(Component parent)
      Deprecated.
  • Method Details

    • newInstanceForCopy

      protected TextArea newInstanceForCopy(Component parent)
      Deprecated.
      Description copied from class: AbstractComponent
      Will be called when a copy is requested Component.createCopy()! Create a new instanc of this component, copy the properties and return it. You don't have to copy the properties which are inherited from the abstract implmentation. Only copy the properties from the concrete implementation.

      The parent has to be the parent given in the argument parent

      Specified by:
      newInstanceForCopy in class AbstractComponent<TextArea>
      Parameters:
      parent - the parent to set
      Returns:
      the new instance
    • getDefaultDataType

      public String getDefaultDataType()
      Deprecated.
      Description copied from interface: DataComponent
      Returns the default data type to use for this data component.

      For example a text-field uses the "string" while the email-field uses the virtual type "email".

      Specified by:
      getDefaultDataType in interface DataComponent
      Overrides:
      getDefaultDataType in class AbstractDataComponent<TextArea>
      Returns:
      The name of the nice2 data type.
    • checkInt

      public static void checkInt(String field, int val)
      Deprecated.
      Checks if a numeric value is acceptable for the int setters in this class.
    • getHeightType

      public TextArea.HeightType getHeightType()
      Deprecated.
      Specified by:
      getHeightType in interface TextArea
    • setHeightType

      public void setHeightType(TextArea.HeightType heightType)
      Deprecated.
      Specified by:
      setHeightType in interface TextArea
    • getHeight

      public int getHeight()
      Deprecated.
      Specified by:
      getHeight in interface TextArea
    • setHeight

      public void setHeight(int height)
      Deprecated.
      Specified by:
      setHeight in interface TextArea
    • getHeightGrow

      public boolean getHeightGrow()
      Deprecated.
      Specified by:
      getHeightGrow in interface TextArea
    • setHeightGrow

      public void setHeightGrow(boolean heightGrow)
      Deprecated.
      Specified by:
      setHeightGrow in interface TextArea
    • getHeightGrowMin

      public int getHeightGrowMin()
      Deprecated.
      Specified by:
      getHeightGrowMin in interface TextArea
    • setHeightGrowMin

      public void setHeightGrowMin(int heightGrowMin)
      Deprecated.
      Specified by:
      setHeightGrowMin in interface TextArea
    • getHeightGrowMax

      public int getHeightGrowMax()
      Deprecated.
      Specified by:
      getHeightGrowMax in interface TextArea
    • setHeightGrowMax

      public void setHeightGrowMax(int heightGrowMax)
      Deprecated.
      Specified by:
      setHeightGrowMax in interface TextArea
    • wrap

      Deprecated.
      Description copied from interface: Component
      Wraps the component with the given interceptor handler.

      Feel free to add an unwrap() method when needed.

      Specified by:
      wrap in interface Component