home *** CD-ROM | disk | FTP | other *** search
- package FontViewer.resources;
-
- import java.awt.Image;
- import javax.swing.ImageIcon;
-
- public class MyImageIcon extends ImageIcon {
- // $FF: renamed from: ic javax.swing.ImageIcon
- private ImageIcon field_0;
-
- public MyImageIcon(String imageName) {
- this.field_0 = new ImageIcon(this.getClass().getClassLoader().getResource("FontViewer/resources/icons/" + imageName));
- }
-
- public ImageIcon getImageIcon() {
- return this.field_0;
- }
-
- public Image getImage() {
- return this.field_0.getImage();
- }
- }
-