Interface TaskPage


public interface TaskPage
Component that groups several TaskWindows.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Brings the task page to front position.
    double
    Returns the height of this task page.
    Returns the name of this task page.
    double
    Returns the width of this task page.
    void
    setName(String value)
    Changes the name of this task page.
  • Method Details

    • bringToFront

      void bringToFront()
      Brings the task page to front position.
    • getName

      String getName()
      Returns the name of this task page.
      Returns:
      the name of this task page.
    • setName

      void setName(String value)
      Changes the name of this task page.
      Parameters:
      value - the new name of the page.
      Throws:
      NullPointerException - if value is null.
    • getWidth

      double getWidth()
      Returns the width of this task page.
      Returns:
      the width of this task page.
    • getHeight

      double getHeight()
      Returns the height of this task page.
      Returns:
      the height of this task page.