Liking cljdoc? Tell your friends :D

javax.accessibility.AccessibleTable

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

Class AccessibleTable describes a user-interface component that
presents data in a two-dimensional table format.
raw docstring

accessible-column-selected?clj

(accessible-column-selected? this c)

Returns a boolean value indicating whether the specified column is selected.

c - zero-based column of the table - int

returns: the boolean value true if the specified column is selected. Otherwise, false. - boolean

Returns a boolean value indicating whether the specified column
 is selected.

c - zero-based column of the table - `int`

returns: the boolean value true if the specified column is selected.
 Otherwise, false. - `boolean`
raw docstring

accessible-row-selected?clj

(accessible-row-selected? this r)

Returns a boolean value indicating whether the specified row is selected.

r - zero-based row of the table - int

returns: the boolean value true if the specified row is selected. Otherwise, false. - boolean

Returns a boolean value indicating whether the specified row
 is selected.

r - zero-based row of the table - `int`

returns: the boolean value true if the specified row is selected.
 Otherwise, false. - `boolean`
raw docstring

accessible-selected?clj

(accessible-selected? this r c)

Returns a boolean value indicating whether the accessible at a specified row and column is selected.

r - zero-based row of the table - int c - zero-based column of the table - int

returns: the boolean value true if the accessible at the row and column is selected. Otherwise, the boolean value false - boolean

Returns a boolean value indicating whether the accessible at
 a specified row and column is selected.

r - zero-based row of the table - `int`
c - zero-based column of the table - `int`

returns: the boolean value true if the accessible at the
 row and column is selected. Otherwise, the boolean value
 false - `boolean`
raw docstring

get-accessible-atclj

(get-accessible-at this r c)

Returns the Accessible at a specified row and column in the table.

r - zero-based row of the table - int c - zero-based column of the table - int

returns: the Accessible at the specified row and column - javax.accessibility.Accessible

Returns the Accessible at a specified row and column
 in the table.

r - zero-based row of the table - `int`
c - zero-based column of the table - `int`

returns: the Accessible at the specified row and column - `javax.accessibility.Accessible`
raw docstring

get-accessible-captionclj

(get-accessible-caption this)

Returns the caption for the table.

returns: the caption for the table - javax.accessibility.Accessible

Returns the caption for the table.

returns: the caption for the table - `javax.accessibility.Accessible`
raw docstring

get-accessible-column-countclj

(get-accessible-column-count this)

Returns the number of columns in the table.

returns: the number of columns in the table - int

Returns the number of columns in the table.

returns: the number of columns in the table - `int`
raw docstring

get-accessible-column-descriptionclj

(get-accessible-column-description this c)

Returns the description text of the specified column in the table.

c - zero-based column of the table - int

returns: the text description of the column - javax.accessibility.Accessible

Returns the description text of the specified column in the table.

c - zero-based column of the table - `int`

returns: the text description of the column - `javax.accessibility.Accessible`
raw docstring

get-accessible-column-extent-atclj

(get-accessible-column-extent-at this r c)

Returns the number of columns occupied by the Accessible at a specified row and column in the table.

r - zero-based row of the table - int c - zero-based column of the table - int

returns: the number of columns occupied by the Accessible at a given specified row and column - int

Returns the number of columns occupied by the Accessible at
 a specified row and column in the table.

r - zero-based row of the table - `int`
c - zero-based column of the table - `int`

returns: the number of columns occupied by the Accessible at a
 given specified row and column - `int`
raw docstring

get-accessible-column-headerclj

(get-accessible-column-header this)

Returns the column headers as an AccessibleTable.

returns: an AccessibleTable representing the column headers - javax.accessibility.AccessibleTable

Returns the column headers as an AccessibleTable.

returns: an AccessibleTable representing the column
 headers - `javax.accessibility.AccessibleTable`
raw docstring

get-accessible-row-countclj

(get-accessible-row-count this)

Returns the number of rows in the table.

returns: the number of rows in the table - int

Returns the number of rows in the table.

returns: the number of rows in the table - `int`
raw docstring

get-accessible-row-descriptionclj

(get-accessible-row-description this r)

Returns the description of the specified row in the table.

r - zero-based row of the table - int

returns: the description of the row - javax.accessibility.Accessible

Returns the description of the specified row in the table.

r - zero-based row of the table - `int`

returns: the description of the row - `javax.accessibility.Accessible`
raw docstring

get-accessible-row-extent-atclj

(get-accessible-row-extent-at this r c)

Returns the number of rows occupied by the Accessible at a specified row and column in the table.

r - zero-based row of the table - int c - zero-based column of the table - int

returns: the number of rows occupied by the Accessible at a given specified (row, column) - int

Returns the number of rows occupied by the Accessible at
 a specified row and column in the table.

r - zero-based row of the table - `int`
c - zero-based column of the table - `int`

returns: the number of rows occupied by the Accessible at a
 given specified (row, column) - `int`
raw docstring

get-accessible-row-headerclj

(get-accessible-row-header this)

Returns the row headers as an AccessibleTable.

returns: an AccessibleTable representing the row headers - javax.accessibility.AccessibleTable

Returns the row headers as an AccessibleTable.

returns: an AccessibleTable representing the row
 headers - `javax.accessibility.AccessibleTable`
raw docstring

get-accessible-summaryclj

(get-accessible-summary this)

Returns the summary description of the table.

returns: the summary description of the table - javax.accessibility.Accessible

Returns the summary description of the table.

returns: the summary description of the table - `javax.accessibility.Accessible`
raw docstring

get-selected-accessible-columnsclj

(get-selected-accessible-columns this)

Returns the selected columns in a table.

returns: an array of selected columns where each element is a zero-based column of the table - int[]

Returns the selected columns in a table.

returns: an array of selected columns where each element is a
 zero-based column of the table - `int[]`
raw docstring

get-selected-accessible-rowsclj

(get-selected-accessible-rows this)

Returns the selected rows in a table.

returns: an array of selected rows where each element is a zero-based row of the table - int[]

Returns the selected rows in a table.

returns: an array of selected rows where each element is a
 zero-based row of the table - `int[]`
raw docstring

set-accessible-captionclj

(set-accessible-caption this a)

Sets the caption for the table.

a - the caption for the table - javax.accessibility.Accessible

Sets the caption for the table.

a - the caption for the table - `javax.accessibility.Accessible`
raw docstring

set-accessible-column-descriptionclj

(set-accessible-column-description this c a)

Sets the description text of the specified column in the table.

c - zero-based column of the table - int a - the text description of the column - javax.accessibility.Accessible

Sets the description text of the specified column in the table.

c - zero-based column of the table - `int`
a - the text description of the column - `javax.accessibility.Accessible`
raw docstring

set-accessible-column-headerclj

(set-accessible-column-header this table)

Sets the column headers.

table - an AccessibleTable representing the column headers - javax.accessibility.AccessibleTable

Sets the column headers.

table - an AccessibleTable representing the column headers - `javax.accessibility.AccessibleTable`
raw docstring

set-accessible-row-descriptionclj

(set-accessible-row-description this r a)

Sets the description text of the specified row of the table.

r - zero-based row of the table - int a - the description of the row - javax.accessibility.Accessible

Sets the description text of the specified row of the table.

r - zero-based row of the table - `int`
a - the description of the row - `javax.accessibility.Accessible`
raw docstring

set-accessible-row-headerclj

(set-accessible-row-header this table)

Sets the row headers.

table - an AccessibleTable representing the row headers - javax.accessibility.AccessibleTable

Sets the row headers.

table - an AccessibleTable representing the row headers - `javax.accessibility.AccessibleTable`
raw docstring

set-accessible-summaryclj

(set-accessible-summary this a)

Sets the summary description of the table

a - the summary description of the table - javax.accessibility.Accessible

Sets the summary description of the table

a - the summary description of the table - `javax.accessibility.Accessible`
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close