ScrollPane.java (setBlockIncrement): Throw error.

* java/awt/ScrollPane.java (setBlockIncrement): Throw error.
	(getViewportSize): Insets include scrollbar size.
	(doLayout): Finished.
	(getScrollPosition): Wrote.
	* java/awt/peer/ScrollPanePeer.java (setBlockIncrement): Removed.

From-SVN: r38670
This commit is contained in:
Tom Tromey 2001-01-03 20:34:44 +00:00 committed by Tom Tromey
parent 6bfa3dac74
commit 234fb86cae
3 changed files with 21 additions and 21 deletions

View file

@ -17,6 +17,5 @@ public interface ScrollPanePeer extends ContainerPeer
int getVScrollbarWidth();
void setScrollPosition(int x, int y);
void setUnitIncrement(Adjustable adj, int increment);
void setBlockIncrement(Adjustable adj, int increment);
void setValue(Adjustable adj, int value);
}