Class TextAreaPage

    • Field Detail

      • KEY_TEXT

        public static final String KEY_TEXT
        key in the properties that contains the comma-separated list of all items.
        See Also:
        Constant Field Values
      • m_TextArea

        protected BaseTextArea m_TextArea
        the text area.
    • Constructor Detail

      • TextAreaPage

        public TextAreaPage()
        Default constructor.
      • TextAreaPage

        public TextAreaPage​(String pageName)
        Initializes the page with the given page name.
        Parameters:
        pageName - the page name to use
    • Method Detail

      • getColumns

        public int getColumns()
        Returns the number of columns in the TextArea.
        Returns:
        number of columns >= 0
      • setColumns

        public void setColumns​(int columns)
        Sets the number of columns for this TextArea. Does an invalidate() after setting the new value.
        Parameters:
        columns - the number of columns >= 0
        Throws:
        IllegalArgumentException - if columns is less than 0
      • getRows

        public int getRows()
        Returns the number of rows in the TextArea.
        Returns:
        the number of rows >= 0
      • setRows

        public void setRows​(int rows)
        Sets the number of rows for this TextArea. Calls invalidate() after setting the new value.
        Parameters:
        rows - the number of rows >= 0
        Throws:
        IllegalArgumentException - if rows is less than 0
      • getTextArea

        public BaseTextArea getTextArea()
        Returns the underlying text area.
        Returns:
        the text area
      • setText

        public void setText​(String value)
        Sets the text.
        Parameters:
        value - the text
      • getText

        public String getText()
        Returns the text.
        Returns:
        the text
      • setProperties

        public void setProperties​(Properties value)
        Sets the content of the page (ie parameters) as properties.
        Specified by:
        setProperties in class AbstractWizardPage
        Parameters:
        value - the parameters as properties
      • getProperties

        public Properties getProperties()
        Returns the content of the page (ie parameters) as properties.
        Specified by:
        getProperties in class AbstractWizardPage
        Returns:
        the parameters as properties