Package Summary  Overview Summary

class:JTableHeader.AccessibleJTableHeader.AccessibleJTableHeaderEntry [NONE]

constructor:<init>(int,javax.swing.table.JTableHeader,javax.swing.JTable) [NONE]

  • AccessibleJTableHeaderEntry

    public AccessibleJTableHeaderEntry​(int c,
                                       JTableHeader p,
                                       JTable t)
    Constructs an AccessiblJTableHeaaderEntry
    Parameters:
    c - the column index
    p - the parent JTableHeader
    t - the table JTable
    Since:
    1.4

method:getAccessibleContext() [NONE]

  • getAccessibleContext

    public AccessibleContext getAccessibleContext()
    Get the AccessibleContext associated with this object. In the implementation of the Java Accessibility API for this class, returns this object, which serves as its own AccessibleContext.
    Specified by:
    getAccessibleContext in interface Accessible
    Returns:
    this object

method:getAccessibleName() [NONE]

  • getAccessibleName

    public String getAccessibleName()
    Description copied from class: AccessibleContext
    Gets the accessibleName property of this object. The accessibleName property of an object is a localized String that designates the purpose of the object. For example, the accessibleName property of a label or button might be the text of the label or button itself. In the case of an object that doesn't display its name, the accessibleName should still be set. For example, in the case of a text field used to enter the name of a city, the accessibleName for the en_US locale could be 'city.'
    Overrides:
    getAccessibleName in class AccessibleContext
    Returns:
    the localized name of the object; null if this object does not have a name
    See Also:
    AccessibleContext.setAccessibleName(java.lang.String)

method:setAccessibleName(java.lang.String) [NONE]

method:getAccessibleDescription() [NONE]

  • getAccessibleDescription

    public String getAccessibleDescription()
    Description copied from class: AccessibleContext
    Gets the accessibleDescription property of this object. The accessibleDescription property of this object is a short localized phrase describing the purpose of the object. For example, in the case of a 'Cancel' button, the accessibleDescription could be 'Ignore changes and close dialog box.'
    Overrides:
    getAccessibleDescription in class AccessibleContext
    Returns:
    the localized description of the object; null if this object does not have a description
    See Also:
    AccessibleContext.setAccessibleDescription(java.lang.String)

method:setAccessibleDescription(java.lang.String) [NONE]

method:getAccessibleRole() [NONE]

  • getAccessibleRole

    public AccessibleRole getAccessibleRole()
    Description copied from class: AccessibleContext
    Gets the role of this object. The role of the object is the generic purpose or use of the class of this object. For example, the role of a push button is AccessibleRole.PUSH_BUTTON. The roles in AccessibleRole are provided so component developers can pick from a set of predefined roles. This enables assistive technologies to provide a consistent interface to various tweaked subclasses of components (e.g., use AccessibleRole.PUSH_BUTTON for all components that act like a push button) as well as distinguish between subclasses that behave differently (e.g., AccessibleRole.CHECK_BOX for check boxes and AccessibleRole.RADIO_BUTTON for radio buttons).

    Note that the AccessibleRole class is also extensible, so custom component developers can define their own AccessibleRole's if the set of predefined roles is inadequate.

    Specified by:
    getAccessibleRole in class AccessibleContext
    Returns:
    an instance of AccessibleRole describing the role of the object
    See Also:
    AccessibleRole

method:getAccessibleStateSet() [NONE]

method:getAccessibleIndexInParent() [NONE]

method:getAccessibleChildrenCount() [NONE]

  • getAccessibleChildrenCount

    public int getAccessibleChildrenCount()
    Description copied from class: AccessibleContext
    Returns the number of accessible children of the object.
    Specified by:
    getAccessibleChildrenCount in class AccessibleContext
    Returns:
    the number of accessible children of the object.

method:getAccessibleChild(int) [NONE]

  • getAccessibleChild

    public Accessible getAccessibleChild​(int i)
    Description copied from class: AccessibleContext
    Returns the specified Accessible child of the object. The Accessible children of an Accessible object are zero-based, so the first child of an Accessible child is at index 0, the second child is at index 1, and so on.
    Specified by:
    getAccessibleChild in class AccessibleContext
    Parameters:
    i - zero-based index of child
    Returns:
    the Accessible child of the object
    See Also:
    AccessibleContext.getAccessibleChildrenCount()

method:getLocale() [NONE]

  • getLocale

    public Locale getLocale()
    Description copied from class: AccessibleContext
    Gets the locale of the component. If the component does not have a locale, then the locale of its parent is returned.
    Specified by:
    getLocale in class AccessibleContext
    Returns:
    this component's locale. If this component does not have a locale, the locale of its parent is returned.

method:addPropertyChangeListener(java.beans.PropertyChangeListener) [NONE]

method:removePropertyChangeListener(java.beans.PropertyChangeListener) [NONE]

method:getAccessibleAction() [NONE]

method:getAccessibleComponent() [NONE]

  • getAccessibleComponent

    public AccessibleComponent getAccessibleComponent()
    Get the AccessibleComponent associated with this object. In the implementation of the Java Accessibility API for this class, return this object, which is responsible for implementing the AccessibleComponent interface on behalf of itself.
    Overrides:
    getAccessibleComponent in class AccessibleContext
    Returns:
    this object
    See Also:
    AccessibleComponent

method:getAccessibleSelection() [NONE]

method:getAccessibleText() [NONE]

method:getAccessibleValue() [NONE]

method:getBackground() [NONE]

method:setBackground(java.awt.Color) [NONE]

method:getForeground() [NONE]

method:setForeground(java.awt.Color) [NONE]

method:getCursor() [NONE]

method:setCursor(java.awt.Cursor) [NONE]

method:getFont() [NONE]

method:setFont(java.awt.Font) [NONE]

method:getFontMetrics(java.awt.Font) [NONE]

method:isEnabled() [NONE]

method:setEnabled(boolean) [NONE]

method:isVisible() [NONE]

method:setVisible(boolean) [NONE]

method:isShowing() [NONE]

  • isShowing

    public boolean isShowing()
    Description copied from interface: AccessibleComponent
    Determines if the object is showing. This is determined by checking the visibility of the object and its ancestors. Note: this will return true even if the object is obscured by another (for example, it is underneath a menu that was pulled down).
    Specified by:
    isShowing in interface AccessibleComponent
    Returns:
    true if object is showing; otherwise, false

method:contains(java.awt.Point) [NONE]

  • contains

    public boolean contains​(Point p)
    Description copied from interface: AccessibleComponent
    Checks whether the specified point is within this object's bounds, where the point's x and y coordinates are defined to be relative to the coordinate system of the object.
    Specified by:
    contains in interface AccessibleComponent
    Parameters:
    p - the point relative to the coordinate system of the object
    Returns:
    true if object contains point; otherwise false
    See Also:
    AccessibleComponent.getBounds()

method:getLocationOnScreen() [NONE]

method:getLocation() [NONE]

method:setLocation(java.awt.Point) [NONE]

method:getBounds() [NONE]

method:setBounds(java.awt.Rectangle) [NONE]

method:getSize() [NONE]

  • getSize

    public Dimension getSize()
    Description copied from interface: AccessibleComponent
    Returns the size of this object in the form of a Dimension object. The height field of the Dimension object contains this object's height, and the width field of the Dimension object contains this object's width.
    Specified by:
    getSize in interface AccessibleComponent
    Returns:
    A Dimension object that indicates the size of this component; null if this object is not on the screen
    See Also:
    AccessibleComponent.setSize(java.awt.Dimension)

method:setSize(java.awt.Dimension) [NONE]

method:getAccessibleAt(java.awt.Point) [NONE]

  • getAccessibleAt

    public Accessible getAccessibleAt​(Point p)
    Description copied from interface: AccessibleComponent
    Returns the Accessible child, if one exists, contained at the local coordinate Point.
    Specified by:
    getAccessibleAt in interface AccessibleComponent
    Parameters:
    p - The point relative to the coordinate system of this object
    Returns:
    the Accessible, if it exists, at the specified location; otherwise null

method:isFocusTraversable() [NONE]

method:requestFocus() [NONE]

method:addFocusListener(java.awt.event.FocusListener) [NONE]

method:removeFocusListener(java.awt.event.FocusListener) [NONE]

© 2019 Oracle Corporation and/or its affiliates