javax.accessibility
Interface AccessibleIcon

All Known Implementing Classes:
javax.swing.ImageIcon.AccessibleImageIcon

public interface AccessibleIcon

Untamed:


Method Summary
 String getAccessibleIconDescription()
          Enabled: Gets the description of the icon.
 int getAccessibleIconHeight()
          Enabled: Gets the height of the icon
 int getAccessibleIconWidth()
          Enabled: Gets the width of the icon
 void setAccessibleIconDescription(String description)
          Enabled: Sets the description of the icon.
 

Method Detail

getAccessibleIconDescription

public String getAccessibleIconDescription()
Enabled: Gets the description of the icon. This is meant to be a brief textual description of the object. For example, it might be presented to a blind user to give an indication of the purpose of the icon.

Returns:
the description of the icon

setAccessibleIconDescription

public void setAccessibleIconDescription(String description)
Enabled: Sets the description of the icon. This is meant to be a brief textual description of the object. For example, it might be presented to a blind user to give an indication of the purpose of the icon.

Parameters:
description - the description of the icon

getAccessibleIconWidth

public int getAccessibleIconWidth()
Enabled: Gets the width of the icon

Returns:
the width of the icon.

getAccessibleIconHeight

public int getAccessibleIconHeight()
Enabled: Gets the height of the icon

Returns:
the height of the icon.


comments?