Package Summary  Overview Summary

class:JTabbedPane.AccessibleJTabbedPane [NONE]

constructor:<init>() [NONE]

  • AccessibleJTabbedPane

    public AccessibleJTabbedPane()
    Constructs an AccessibleJTabbedPane

method:getAccessibleName() [NONE]

method:stateChanged(javax.swing.event.ChangeEvent) [NONE]

  • stateChanged

    public void stateChanged​(ChangeEvent e)
    Description copied from interface: ChangeListener
    Invoked when the target of the listener has changed its state.
    Specified by:
    stateChanged in interface ChangeListener
    Parameters:
    e - a ChangeEvent object

method:getAccessibleRole() [NONE]

method:getAccessibleChildrenCount() [NONE]

method:getAccessibleChild(int) [NONE]

method:getAccessibleSelection() [NONE]

  • getAccessibleSelection

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

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

  • getAccessibleAt

    public Accessible getAccessibleAt​(Point p)
    Returns the Accessible child contained at the local coordinate Point, if one exists. Otherwise returns the currently selected tab.
    Specified by:
    getAccessibleAt in interface AccessibleComponent
    Overrides:
    getAccessibleAt in class Container.AccessibleAWTContainer
    Parameters:
    p - the point defining the top-left corner of the Accessible, given in the coordinate space of the object's parent
    Returns:
    the Accessible at the specified location, if it exists

method:getAccessibleSelectionCount() [NONE]

  • getAccessibleSelectionCount

    public int getAccessibleSelectionCount()
    Description copied from interface: AccessibleSelection
    Returns the number of Accessible children currently selected. If no children are selected, the return value will be 0.
    Specified by:
    getAccessibleSelectionCount in interface AccessibleSelection
    Returns:
    the number of items currently selected

method:getAccessibleSelection(int) [NONE]

  • getAccessibleSelection

    public Accessible getAccessibleSelection​(int i)
    Description copied from interface: AccessibleSelection
    Returns an Accessible representing the specified selected child of the object. If there isn't a selection, or there are fewer children selected than the integer passed in, the return value will be null.

    Note that the index represents the i-th selected child, which is different from the i-th child.

    Specified by:
    getAccessibleSelection in interface AccessibleSelection
    Parameters:
    i - the zero-based index of selected children
    Returns:
    the i-th selected child
    See Also:
    AccessibleSelection.getAccessibleSelectionCount()

method:isAccessibleChildSelected(int) [NONE]

method:addAccessibleSelection(int) [NONE]

  • addAccessibleSelection

    public void addAccessibleSelection​(int i)
    Description copied from interface: AccessibleSelection
    Adds the specified Accessible child of the object to the object's selection. If the object supports multiple selections, the specified child is added to any existing selection, otherwise it replaces any existing selection in the object. If the specified child is already selected, this method has no effect.
    Specified by:
    addAccessibleSelection in interface AccessibleSelection
    Parameters:
    i - the zero-based index of the child
    See Also:
    AccessibleContext.getAccessibleChild(int)

method:removeAccessibleSelection(int) [NONE]

method:clearAccessibleSelection() [NONE]

method:selectAllAccessibleSelection() [NONE]

© 2018 Oracle Corporation and/or its affiliates