KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > java > awt > peer > ScrollPanePeer


1 /*
2  * @(#)ScrollPanePeer.java 1.15 03/12/19
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7 package java.awt.peer;
8
9 import java.awt.Point JavaDoc;
10 import java.awt.Adjustable JavaDoc;
11
12 /**
13  * The peer interfaces are intended only for use in porting
14  * the AWT. They are not intended for use by application
15  * developers, and developers should not implement peers
16  * nor invoke any of the peer methods directly on the peer
17  * instances.
18  */

19 public interface ScrollPanePeer extends ContainerPeer {
20     int getHScrollbarHeight();
21     int getVScrollbarWidth();
22     void setScrollPosition(int x, int y);
23     void childResized(int w, int h);
24     void setUnitIncrement(Adjustable JavaDoc adj, int u);
25     void setValue(Adjustable JavaDoc adj, int v);
26 }
27
Popular Tags