Package Summary  Overview Summary

class:AccessibleTable [NONE]

  • All Known Subinterfaces:
    AccessibleExtendedTable
    All Known Implementing Classes:
    JTable.AccessibleJTable

    public interface AccessibleTable
    
    Class AccessibleTable describes a user-interface component that presents data in a two-dimensional table format.
    Since:
    1.3

method:getAccessibleCaption() [NONE]

  • getAccessibleCaption

    Accessible getAccessibleCaption()
    Returns the caption for the table.
    Returns:
    the caption for the table

method:setAccessibleCaption(javax.accessibility.Accessible) [NONE]

  • setAccessibleCaption

    void setAccessibleCaption​(Accessible a)
    Sets the caption for the table.
    Parameters:
    a - the caption for the table

method:getAccessibleSummary() [NONE]

  • getAccessibleSummary

    Accessible getAccessibleSummary()
    Returns the summary description of the table.
    Returns:
    the summary description of the table

method:setAccessibleSummary(javax.accessibility.Accessible) [NONE]

  • setAccessibleSummary

    void setAccessibleSummary​(Accessible a)
    Sets the summary description of the table.
    Parameters:
    a - the summary description of the table

method:getAccessibleRowCount() [NONE]

  • getAccessibleRowCount

    int getAccessibleRowCount()
    Returns the number of rows in the table.
    Returns:
    the number of rows in the table

method:getAccessibleColumnCount() [NONE]

  • getAccessibleColumnCount

    int getAccessibleColumnCount()
    Returns the number of columns in the table.
    Returns:
    the number of columns in the table

method:getAccessibleAt(int,int) [NONE]

  • getAccessibleAt

    Accessible getAccessibleAt​(int r,
                               int c)
    Returns the Accessible at a specified row and column in the table.
    Parameters:
    r - zero-based row of the table
    c - zero-based column of the table
    Returns:
    the Accessible at the specified row and column

method:getAccessibleRowExtentAt(int,int) [NONE]

  • getAccessibleRowExtentAt

    int getAccessibleRowExtentAt​(int r,
                                 int c)
    Returns the number of rows occupied by the Accessible at a specified row and column in the table.
    Parameters:
    r - zero-based row of the table
    c - zero-based column of the table
    Returns:
    the number of rows occupied by the Accessible at a given specified (row, column)

method:getAccessibleColumnExtentAt(int,int) [NONE]

  • getAccessibleColumnExtentAt

    int getAccessibleColumnExtentAt​(int r,
                                    int c)
    Returns the number of columns occupied by the Accessible at a specified row and column in the table.
    Parameters:
    r - zero-based row of the table
    c - zero-based column of the table
    Returns:
    the number of columns occupied by the Accessible at a given specified row and column

method:getAccessibleRowHeader() [NONE]

  • getAccessibleRowHeader

    AccessibleTable getAccessibleRowHeader()
    Returns the row headers as an AccessibleTable.
    Returns:
    an AccessibleTable representing the row headers

method:setAccessibleRowHeader(javax.accessibility.AccessibleTable) [NONE]

  • setAccessibleRowHeader

    void setAccessibleRowHeader​(AccessibleTable table)
    Sets the row headers.
    Parameters:
    table - an AccessibleTable representing the row headers

method:getAccessibleColumnHeader() [NONE]

  • getAccessibleColumnHeader

    AccessibleTable getAccessibleColumnHeader()
    Returns the column headers as an AccessibleTable.
    Returns:
    an AccessibleTable representing the column headers

method:setAccessibleColumnHeader(javax.accessibility.AccessibleTable) [NONE]

  • setAccessibleColumnHeader

    void setAccessibleColumnHeader​(AccessibleTable table)
    Sets the column headers.
    Parameters:
    table - an AccessibleTable representing the column headers

method:getAccessibleRowDescription(int) [NONE]

  • getAccessibleRowDescription

    Accessible getAccessibleRowDescription​(int r)
    Returns the description of the specified row in the table.
    Parameters:
    r - zero-based row of the table
    Returns:
    the description of the row

method:setAccessibleRowDescription(int,javax.accessibility.Accessible) [NONE]

  • setAccessibleRowDescription

    void setAccessibleRowDescription​(int r,
                                     Accessible a)
    Sets the description text of the specified row of the table.
    Parameters:
    r - zero-based row of the table
    a - the description of the row

method:getAccessibleColumnDescription(int) [NONE]

  • getAccessibleColumnDescription

    Accessible getAccessibleColumnDescription​(int c)
    Returns the description text of the specified column in the table.
    Parameters:
    c - zero-based column of the table
    Returns:
    the text description of the column

method:setAccessibleColumnDescription(int,javax.accessibility.Accessible) [NONE]

  • setAccessibleColumnDescription

    void setAccessibleColumnDescription​(int c,
                                        Accessible a)
    Sets the description text of the specified column in the table.
    Parameters:
    c - zero-based column of the table
    a - the text description of the column

method:isAccessibleSelected(int,int) [NONE]

  • isAccessibleSelected

    boolean isAccessibleSelected​(int r,
                                 int c)
    Returns a boolean value indicating whether the accessible at a specified row and column is selected.
    Parameters:
    r - zero-based row of the table
    c - zero-based column of the table
    Returns:
    the boolean value true if the accessible at the row and column is selected. Otherwise, the boolean value false

method:isAccessibleRowSelected(int) [NONE]

  • isAccessibleRowSelected

    boolean isAccessibleRowSelected​(int r)
    Returns a boolean value indicating whether the specified row is selected.
    Parameters:
    r - zero-based row of the table
    Returns:
    the boolean value true if the specified row is selected. Otherwise, false.

method:isAccessibleColumnSelected(int) [NONE]

  • isAccessibleColumnSelected

    boolean isAccessibleColumnSelected​(int c)
    Returns a boolean value indicating whether the specified column is selected.
    Parameters:
    c - zero-based column of the table
    Returns:
    the boolean value true if the specified column is selected. Otherwise, false.

method:getSelectedAccessibleRows() [NONE]

  • getSelectedAccessibleRows

    int[] getSelectedAccessibleRows()
    Returns the selected rows in a table.
    Returns:
    an array of selected rows where each element is a zero-based row of the table

method:getSelectedAccessibleColumns() [NONE]

  • getSelectedAccessibleColumns

    int[] getSelectedAccessibleColumns()
    Returns the selected columns in a table.
    Returns:
    an array of selected columns where each element is a zero-based column of the table

© 2019 Oracle Corporation and/or its affiliates