User Tools

Site Tools


swing:combo_box

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
swing:combo_box [2018/04/13 09:22] – [Νon-editable combo box] gthanosswing:combo_box [Unknown date] (current) – external edit (Unknown date) 127.0.0.1
Line 77: Line 77:
  
   protected void updateLabel(String name) {   protected void updateLabel(String name) {
-    ImageIcon icon = createImageIcon(name + ".gif");+    ImageIcon icon = new ImageIcon(name + ".gif");
     picture.setIcon(icon);     picture.setIcon(icon);
     picture.setToolTipText("A drawing of a " + name.toLowerCase());     picture.setToolTipText("A drawing of a " + name.toLowerCase());
Line 84: Line 84:
     } else {     } else {
       picture.setText("Image not found");       picture.setText("Image not found");
-    } 
-  } 
- 
-  /** Returns an ImageIcon, or null if the path was invalid. */ 
-  protected static ImageIcon createImageIcon(String path) { 
-    java.net.URL imgURL = ComboBoxDemo.class.getResource(path); 
-    if (imgURL != null) { 
-      return new ImageIcon(imgURL); 
-    } else { 
-      System.err.println("Couldn't find file: " + path); 
-      return null; 
     }     }
   }   }
swing/combo_box.1523611371.txt.gz · Last modified: 2018/04/13 08:22 (external edit)