JavaTM Platform
Standard Ed. 6

javax.sound.sampled
类 BooleanControl

java.lang.Object
  继承者 javax.sound.sampled.Control
      继承者 javax.sound.sampled.BooleanControl

public abstract class BooleanControl
     
extends Control

BooleanControl 能够在影响行音频的两个可能的设置之间切换。这些设置都是 boolean 值(truefalse)。图形用户界面可以表示由两个状态按钮、一个 on/off 开关、两个互斥按钮或一个复选框(在其他几种可能性之间)组成的控件。例如,按下一个按钮可能激活 MUTE 控件,以抑制行音频。

与其他 Control 子类一样,将提供一个为适合在用户界面中显示的值返回字符串标签的方法。

从以下版本开始:
1.3

嵌套类摘要
static class BooleanControl.Type
          BooleanControl.Type 类的实例标识一种 boolean 控件。
 
构造方法摘要
protected BooleanControl(BooleanControl.Type type, boolean initialValue)
          构造一个具有给定参数的新 boolean 控件对象。
protected BooleanControl(BooleanControl.Type type, boolean initialValue, String trueStateLabel, String falseStateLabel)
          构造一个具有给定参数的新 boolean 控件对象。
 
方法摘要
 String getStateLabel(boolean state)
          获得指定状态的标签。
 boolean getValue()
          获得此控件的当前值。
 void setValue(boolean value)
          设置控件的当前值。
 String toString()
          提供控件的字符串表示形式
 
从类 javax.sound.sampled.Control 继承的方法
getType
 
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

构造方法详细信息

BooleanControl

protected BooleanControl(BooleanControl.Type type,
                         boolean initialValue,
                         String trueStateLabel,
                         String falseStateLabel)
构造一个具有给定参数的新 boolean 控件对象。

参数:
type - 此 float 控件对象表示的控件类型
initialValue - 初始控件值
trueStateLabel - 由 true 表示的状态标签,如 "true" 或 "on"。
falseStateLabel - 由 false 表示的状态标签,如 "false" 或 "off"。

BooleanControl

protected BooleanControl(BooleanControl.Type type,
                         boolean initialValue)
构造一个具有给定参数的新 boolean 控件对象。 truefalse 状态的标签默认为 "true" 和 "false"。

参数:
type - 由此 float 控件对象表示的控件类型
initialValue - 初始控件值
方法详细信息

setValue

public void setValue(boolean value)
设置控件的当前值。默认实现只设置所指示的值。有些控件需要在受设置值的影响之前打开行。

参数:
value - 所需的新值。

getValue

public boolean getValue()
获得此控件的当前值。

返回:
当前值。

getStateLabel

public String getStateLabel(boolean state)
获得指定状态的标签。

返回:
指定状态的标签,如 true 的标签 "true" 或 "on",或指示 false 的标签 "false" 或 "off"。

toString

public String toString()
提供控件的字符串表示形式

覆盖:
Control 中的 toString
返回:
字符串描述

JavaTM Platform
Standard Ed. 6

提交错误或意见
有关更多的 API 参考资料和开发人员文档,请参阅 Java SE 开发人员文档。该文档包含更详细的、面向开发人员的描述,以及总体概述、术语定义、使用技巧和工作代码示例。

版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。另请参阅文档重新分发政策