|
|
|
||||||||||||||||||
|
javax.accessibility
Code Samples Index These code examples and other materials are subject to Sun Microsystems, Inc. Legal Terms
Setting a Description for Image IconsImage icons can be inserted in a variety of places such as in a text or tree component. You should set a description for image icons to help blind users.
ImageIcon icon = new ImageIcon("image.gif");
icon.setDescription("Description of Image");
|