1 /* 2 SwingWT 3 Copyright(c)2003-2004, R. Rawson-Tetley 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: bobintetley@users.sourceforge.net 9 10 $Log: TabItemCache.java,v $ 11 Revision 1.5 2004/03/30 10:42:46 bobintetley 12 Many minor bug fixes, event improvements by Dan Naab. Full swing.Icon support 13 14 Revision 1.4 2004/01/26 08:11:00 bobintetley 15 Many bugfixes and addition of SwingSet 16 17 Revision 1.3 2003/12/18 09:37:33 bobintetley 18 Enabled support for JTabbedPane and JClosableTabbedPane (SWT doesn't 19 support, so a bit of magic in here) 20 21 Revision 1.2 2003/12/14 09:13:38 bobintetley 22 Added CVS log to source headers 23 24 */ 25 26 package swingwtx.swing; 27 28 public class TabItemCache { 29 public String title = ""; 30 public String tooltip = ""; 31 public Icon icon = null; 32 public swingwt.awt.Component component = null; 33 public String tip = ""; 34 public boolean enabled = true; 35 } 36