FileDocCategorySizeDatePackage
CompoundControl.javaAPI DocAndroid 1.5 API1514Wed May 06 22:41:02 BST 2009javax.sound.sampled

CompoundControl

public abstract class CompoundControl extends Control

Fields Summary
private Control[]
memberControls
Constructors Summary
protected CompoundControl(Type type, Control[] memberControls)

        super(type);
        this.memberControls = memberControls;
    
Methods Summary
public javax.sound.sampled.Control[]getMemberControls()

        return this.memberControls;
    
public java.lang.StringtoString()

        return getType() + "CompoundControl containing "  //$NON-NLS-1$
            + String.valueOf(memberControls) + " Controls."; //$NON-NLS-1$