Commit d8193b85 by Michael Koch Committed by Michael Koch

ScrollPaneAdjustable.java: Reformated.

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

	* java/awt/ScrollPaneAdjustable.java: Reformated.

From-SVN: r63099
parent c001c39b
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
......
......@@ -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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment