Skip to content
Snippets Groups Projects
Commit d8193b85 authored by Michael Koch's avatar Michael Koch Committed by Michael Koch
Browse files

ScrollPaneAdjustable.java: Reformated.

2003-02-19  Michael Koch  <konqueror@gmx.de>

	* java/awt/ScrollPaneAdjustable.java: Reformated.

From-SVN: r63099
parent c001c39b
No related branches found
No related tags found
No related merge requests found
2003-02-19 Michael Koch <konqueror@gmx.de>
* java/awt/ScrollPaneAdjustable.java: Reformated.
2003-02-19 Michael Koch <konqueror@gmx.de> 2003-02-19 Michael Koch <konqueror@gmx.de>
* gnu/awt/j2d/Graphics2DImpl.java * gnu/awt/j2d/Graphics2DImpl.java
......
...@@ -39,34 +39,28 @@ exception statement from your version. */ ...@@ -39,34 +39,28 @@ exception statement from your version. */
package java.awt; package java.awt;
/** /**
* Need this class since the serialization spec for ScrollPane * Need this class since the serialization spec for ScrollPane
* uses it. * uses it.
* *
* @author Aaron M. Renn (arenn@urbanophile.com) * @author Aaron M. Renn (arenn@urbanophile.com)
*/ */
class ScrollPaneAdjustable extends Scrollbar class ScrollPaneAdjustable extends Scrollbar
{ {
public ScrollPaneAdjustable (int orientation)
{
super (orientation);
}
public public void setMaximum (int maximum)
ScrollPaneAdjustable(int orientation) {
{ }
super(orientation);
}
public void
setMaximum(int maximum)
{
}
public void public void setMinimum (int minimum)
setMinimum(int minimum) {
{ }
}
public void
setVisibleAmount(int visibleAmount)
{
}
public void setVisibleAmount (int visibleAmount)
{
}
} // class ScrollPaneAdjustable } // class ScrollPaneAdjustable
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment