Interface java.telephony.phone.capabilities.ComponentCapabilities All Packages Class Hierarchy This Package Previous Next Index Interface java.telephony.phone.capabilities.ComponentCapabilities public interface ComponentCapabilities extends Object canControl() Returns true if the component can be controlled. canObserve() Returns true if the component can be observed. canObserve public abstract boolean canObserve() Returns true if the component can be observed. For example, this method on a PhoneMicrophone component would return true, if events for changes in gain setting can be received through the TerminalObserver interface and also if the "get" methods on each of the component interfaces is expected to be successful. Returns: True if the component can be observed, false otherwise. canControl public abstract boolean canControl() Returns true if the component can be controlled. For example, this method on a PhoneMicrophone component would return true, if the gain setting can be adjusted programmatically. Returns: True if the componet can be controlled, false otherwise. All Packages Class Hierarchy This Package Previous Next Index