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: Scrollbar.java,v $ 11 Revision 1.1 2004/03/12 16:35:28 bobintetley 12 AWT CheckboxGroup support and fix for incorrectly named AWT Scrollbar 13 14 Revision 1.1 2004/01/15 10:11:14 bobintetley 15 Fixed AWT constructors/hierarchy 16 17 18 */ 19 20 package swingwt.awt; 21 22 public class Scrollbar extends swingwtx.swing.JScrollBar { 23 public Scrollbar() { super(); } 24 public Scrollbar(int orientation) { super(orientation); } 25 public Scrollbar(int orientation, int value, int extent, int min, int max) { super(orientation, value, extent, min, max); } 26 } 27