public class ScrollPaneAdjustable extends Object implements Adjustable, Serializable
ScrollPane
。
此类的对象由ScrollPane
方法返回。
HORIZONTAL, NO_ORIENTATION, VERTICAL
Modifier and Type | Method and Description |
---|---|
void |
addAdjustmentListener(AdjustmentListener l)
添加指定的调整监听器以接收来自此
ScrollPaneAdjustable 调整事件。
|
AdjustmentListener[] |
getAdjustmentListeners()
返回在此
ScrollPaneAdjustable 上
ScrollPaneAdjustable 的所有调整监听器的数组。
|
int |
getBlockIncrement()
获取可调整对象的块值增量。
|
int |
getMaximum()
获取可调整对象的最大值。
|
int |
getMinimum()
获取可调整对象的最小值。
|
int |
getOrientation()
返回此滚动条的方向。
|
int |
getUnitIncrement()
获取可调整对象的单位增量。
|
int |
getValue()
获取可调整对象的当前值。
|
boolean |
getValueIsAdjusting()
如果值正在由于用户执行的操作而改变,则返回true。
|
int |
getVisibleAmount()
获取比例指示器的长度。
|
String |
paramString()
返回一个表示此滚动条状态的字符串。
|
void |
removeAdjustmentListener(AdjustmentListener l)
删除指定的调整侦听器,不再从此接收调整事件
ScrollPaneAdjustable 。
|
void |
setBlockIncrement(int b)
设置可调整对象的块值增量。
|
void |
setMaximum(int max)
此方法
不应由用户代码调用。
|
void |
setMinimum(int min)
此方法
不应由用户代码调用。
|
void |
setUnitIncrement(int u)
设置可调整对象的单位值增量。
|
void |
setValue(int v)
将此滚动条的值设置为指定的值。
|
void |
setValueIsAdjusting(boolean b)
设置
valueIsAdjusting 属性。
|
void |
setVisibleAmount(int v)
此方法
不应由用户代码调用。
|
String |
toString()
返回此滚动条及其值的字符串表示形式。
|
public int getOrientation()
getOrientation
在界面
Adjustable
Adjustable.HORIZONTAL
或
Adjustable.VERTICAL
public void setMinimum(int min)
Adjustable
接口。
setMinimum
在界面
Adjustable
min
- 最小值
AWTError
- 调用时总是发生错误。
public int getMinimum()
Adjustable
复制
getMinimum
在界面
Adjustable
public void setMaximum(int max)
Adjustable
接口。
setMaximum
在界面
Adjustable
max
- 最大值
AWTError
- 调用时总是发生错误。
public int getMaximum()
Adjustable
复制
getMaximum
在界面
Adjustable
public void setUnitIncrement(int u)
Adjustable
复制
setUnitIncrement
在界面
Adjustable
u
- 单位增量
public int getUnitIncrement()
Adjustable
复制
getUnitIncrement
在界面
Adjustable
public void setBlockIncrement(int b)
Adjustable
复制
setBlockIncrement
在界面
Adjustable
b
- 块增量
public int getBlockIncrement()
Adjustable
复制
getBlockIncrement
在界面
Adjustable
public void setVisibleAmount(int v)
Adjustable
接口。
setVisibleAmount
在界面
Adjustable
v
-
v
的长度
AWTError
- 调用时总是发生错误。
public int getVisibleAmount()
Adjustable
复制
getVisibleAmount
在接口
Adjustable
public void setValueIsAdjusting(boolean b)
valueIsAdjusting
属性。
b
- 新的调整进度状态
getValueIsAdjusting()
public boolean getValueIsAdjusting()
valueIsAdjusting
属性
setValueIsAdjusting(boolean)
public void setValue(int v)
如果提供的值小于当前最小值或大于当前最大值,则根据需要替换其中一个值。
setValue
在界面
Adjustable
v
-
v
的新值
public int getValue()
Adjustable
复制
getValue
在界面
Adjustable
public void addAdjustmentListener(AdjustmentListener l)
ScrollPaneAdjustable
调整事件。
如果l
为null
,则不会抛出异常并且不执行任何操作。
请参阅AWT Threading Issues有关AWT的线程模型的细节。
addAdjustmentListener
在界面
Adjustable
l
- 调整听众。
removeAdjustmentListener(java.awt.event.AdjustmentListener)
, getAdjustmentListeners()
, AdjustmentListener
, AdjustmentEvent
public void removeAdjustmentListener(AdjustmentListener l)
ScrollPaneAdjustable
。
如果l
为null
,则不会抛出异常并且不执行任何操作。
请参阅AWT Threading Issues有关AWT的线程模型的细节。
removeAdjustmentListener
在界面
Adjustable
l
- 调整监听器。
addAdjustmentListener(java.awt.event.AdjustmentListener)
, getAdjustmentListeners()
, AdjustmentListener
, AdjustmentEvent
public AdjustmentListener[] getAdjustmentListeners()
ScrollPaneAdjustable
上
ScrollPaneAdjustable
的所有调整监听器的数组。
ScrollPaneAdjustable
的
AdjustmentListener
s或一个空数组,如果没有调整监听器当前注册
addAdjustmentListener(java.awt.event.AdjustmentListener)
, removeAdjustmentListener(java.awt.event.AdjustmentListener)
, AdjustmentListener
, AdjustmentEvent
public String paramString()
null
。
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.