mirror of
https://gcc.gnu.org/git/gcc.git
synced 2025-01-11 05:23:55 +08:00
ScrollPaneAdjustable.java: Reformated.
2003-02-19 Michael Koch <konqueror@gmx.de> * java/awt/ScrollPaneAdjustable.java: Reformated. From-SVN: r63099
This commit is contained in:
parent
c001c39bbb
commit
d8193b851c
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user