1 /* 2 SwingWT 3 Copyright(c)2003-2004, Tomer Bartletz 4 5 For more information on distributing and using this program, please 6 see the accompanying "COPYING" file. 7 8 Contact me by electronic mail: tomerb@users.sourceforge.net 9 10 $Log: ComponentAdapter.java,v $ 11 Revision 1.1 2004/03/30 14:22:27 bobintetley 12 Fix to Component min/max sizing code, fix to JPanel insets with titled 13 borders (all of which indirectly fix problems with BoxLayout). Addition 14 of ComponentAdapter 15 16 17 */ 18 package swingwt.awt.event; 19 20 public class ComponentAdapter implements ComponentListener { 21 public void componentHidden(ComponentEvent e) {} 22 public void componentMoved(ComponentEvent e) {} 23 public void componentResized(ComponentEvent e) {} 24 public void componentShown(ComponentEvent e) {} 25 } 26