Setting a Description for Image Icons : Accessible « Swing JFC « Java
- Java
- Swing JFC
- Accessible
Setting a Description for Image Icons
import javax.swing.ImageIcon;
public class Main {
public static void main(String[] argv) throws Exception {
ImageIcon icon = new ImageIcon("image.gif");
icon.setDescription("Description of Image");
}
}
Related examples in the same category