Checkbox.java, [...]: New versions from classpath.

2003-05-25  Michael Koch  <konqueror@gmx.de>

	* java/awt/Checkbox.java,
	java/awt/Dialog.java,
	java/awt/Font.java,
	java/awt/Frame.java,
	java/awt/ScrollPaneAdjustable.java,
	java/awt/Scrollbar.java,
	java/awt/Window.java:
	New versions from classpath.

From-SVN: r67164
This commit is contained in:
Michael Koch
2003-05-25 11:24:27 +00:00
committed by Michael Koch
parent ef8855d7a0
commit eceea3010f
8 changed files with 232 additions and 16 deletions
@@ -63,6 +63,8 @@ public class ScrollPaneAdjustable
int blockIncrement = 1;
AdjustmentListener adjustmentListener;
private transient boolean valueIsAdjusting = false;
ScrollPaneAdjustable (ScrollPane sp, int orientation)
{
this.sp = sp;
@@ -175,5 +177,24 @@ public class ScrollPaneAdjustable
throw new Error ("not implemented");
}
/**
* Returns true if the value is in the process of changing.
*
* @since 1.4
*/
public boolean getValueIsAdjusting ()
{
return valueIsAdjusting;
}
/**
* Sets the value of valueIsAdjusting.
*
* @since 1.4
*/
public void setValueIsAdjusting (boolean valueIsAdjusting)
{
this.valueIsAdjusting = valueIsAdjusting;
}
} // class ScrollPaneAdjustable