home *** CD-ROM | disk | FTP | other *** search
- package javax.swing.plaf.basic;
-
- import java.awt.Component;
- import java.awt.Graphics;
- import java.io.Serializable;
- import javax.swing.Icon;
-
- class BasicIconFactory$EmptyFrameIcon implements Icon, Serializable {
- int height;
- int width;
-
- private BasicIconFactory$EmptyFrameIcon() {
- this.height = 16;
- this.width = 14;
- }
-
- public void paintIcon(Component var1, Graphics var2, int var3, int var4) {
- }
-
- public int getIconWidth() {
- return this.width;
- }
-
- public int getIconHeight() {
- return this.height;
- }
-
- // $FF: synthetic method
- BasicIconFactory$EmptyFrameIcon(BasicIconFactory.1 var1) {
- this();
- }
- }
-