ScrollPanePeer

Name

ScrollPanePeer

[Graphic: Figure from the text]

Description

ScrollPanePeer is an interface that defines the basis for a scrolling container.

Interface Definition

public abstract interface java.awt.peer.ScrollPanePeer extends java.awt.peer.ContainerPeer {
 // Interface Methods public abstract void childResized (int w, int h);
public abstract int getHScrollbarHeight();
public abstract int getVScrollbarWidth();
public abstract void setScrollPosition (int x, int y);
public abstract void setUnitIncrement (Adjustable adj, int u);
public abstract void setValue (Adjustable adj, int v);
}

Interface Methods

childResized

public abstract void childResized (int w, int h)

getHScrollbarHeight

public abstract int getHScrollbarHeight()

getVScrollbarWidth

public abstract int getVScrollbarWidth()

setScrollPosition

public abstract void setScrollPosition (int x, int y)

setUnitIncrement

public abstract void setUnitIncrement (Adjustable adj, int u)

setValue

public abstract void setValue (Adjustable adj, int v)

See Also

Adjustable, ContainerPeer, Scrollbar