ScrollPaneAdjustable.java: Reformated.

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

	* java/awt/ScrollPaneAdjustable.java: Reformated.

From-SVN: r63099
This commit is contained in:
Michael Koch 2003-02-19 11:41:16 +00:00 committed by Michael Koch
parent c001c39bbb
commit d8193b851c
2 changed files with 22 additions and 24 deletions

View File

@ -1,3 +1,7 @@
2003-02-19 Michael Koch <konqueror@gmx.de>
* java/awt/ScrollPaneAdjustable.java: Reformated.
2003-02-19 Michael Koch <konqueror@gmx.de>
* gnu/awt/j2d/Graphics2DImpl.java

View File

@ -39,34 +39,28 @@ exception statement from your version. */
package java.awt;
/**
* Need this class since the serialization spec for ScrollPane
* uses it.
*
* @author Aaron M. Renn (arenn@urbanophile.com)
*/
* Need this class since the serialization spec for ScrollPane
* uses it.
*
* @author Aaron M. Renn (arenn@urbanophile.com)
*/
class ScrollPaneAdjustable extends Scrollbar
{
public ScrollPaneAdjustable (int orientation)
{
super (orientation);
}
public
ScrollPaneAdjustable(int orientation)
{
super(orientation);
}
public void setMaximum (int maximum)
{
}
public void
setMaximum(int maximum)
{
}
public void
setMinimum(int minimum)
{
}
public void
setVisibleAmount(int visibleAmount)
{
}
public void setMinimum (int minimum)
{
}
public void setVisibleAmount (int visibleAmount)
{
}
} // class ScrollPaneAdjustable