1 package org.columba.core.gui.base; 17 18 import java.awt.Component ; 19 import java.awt.Graphics ; 20 21 import javax.swing.Icon ; 22 23 24 32 public class EmptyIcon implements Icon { 33 36 public void paintIcon(Component arg0, Graphics arg1, int arg2, int arg3) { 37 } 38 39 42 public int getIconWidth() { 43 return 16; 44 } 45 46 49 public int getIconHeight() { 50 return 16; 51 } 52 } 53 | Popular Tags |