KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > swingwt > awt > ScrollPane


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: ScrollPane.java,v $
11    Revision 1.5 2004/01/20 07:38:05 bobintetley
12    Bug fixes and compatibility methods
13
14    Revision 1.4 2004/01/15 10:11:14 bobintetley
15    Fixed AWT constructors/hierarchy
16
17    Revision 1.3 2003/12/14 09:13:38 bobintetley
18    Added CVS log to source headers
19
20 */

21
22 package swingwt.awt;
23
24 public class ScrollPane extends swingwtx.swing.JScrollPane {
25     
26     public static final int SCROLLBARS_AS_NEEDED = 0;
27     public static final int SCROLLBARS_AS_ALWAYS = 1;
28     public static final int SCROLLBARS_AS_NEVER = 2;
29     public ScrollPane() { super(); }
30     public ScrollPane(Component component) { super(component); }
31     public ScrollPane(int displayPolicy) { super(); }
32     public ScrollPane(int vsbPolicy, int hsbPolicy) { super(vsbPolicy, hsbPolicy); }
33     public ScrollPane(Component component, int vsbPolicy, int hsbPolicy) { super(component, vsbPolicy, hsbPolicy); }
34 }
35
Popular Tags