- java.lang.Object
-
- javax.sound.sampled.Control
-
- javax.sound.sampled.CompoundControl
-
public abstract class CompoundControl extends Control
诸如图形均衡器的CompoundControl提供对两个或更多个相关属性的控制,每个属性本身表示为Control。- 从以下版本开始:
- 1.3
-
-
Nested Class Summary
Nested Classes Modifier and Type Class 描述 static classCompoundControl.TypeCompoundControl.Type内部类的实例标识了一种复合控件。
-
构造方法摘要
构造方法 Modifier Constructor 描述 protectedCompoundControl(CompoundControl.Type type, Control[] memberControls)使用给定的参数构造一个新的复合控件对象。
-
-
-
构造方法详细信息
-
CompoundControl
protected CompoundControl(CompoundControl.Type type, Control[] memberControls)
使用给定的参数构造一个新的复合控件对象。- 参数
-
type- 表示此复合控制对象的控件类型 -
memberControls- 成员控件的集合
-
-