View Javadoc

1   package org.catacomb.icon;
2   
3   import java.net.URL;
4   
5   import javax.swing.ImageIcon;
6   
7   
8   public class DImageIcon extends ImageIcon {
9       private static final long serialVersionUID = 1L;
10  
11  
12  
13      public DImageIcon(URL imgURL) {
14          super(imgURL);
15      }
16  
17  }