/**
- * This class provides access to the API functionalities through the tizen.tvaudiocontrol interface.
+ * This class provides access to the API functionalities through
+ * the tizen.tvaudiocontrol interface.
* @constructor
*/
function AudioControlManager() {
/**
* Gets the mute state.
+ * @return {boolean} 'true' if sound is muted else 'false'
*/
AudioControlManager.prototype.isMute = function() {
var ret = native.callSync('AudioControlManager_isMute');
/**
- * Registers a volume change callback for getting notified when TV volume has been changed.
- * @param {!function} listener The method to invoke when the volume has been changed.
+ * Registers a volume change callback for getting notified
+ * when TV volume has been changed.
+ *
+ * @param {!function} listener The method to invoke
+ * when the volume has been changed.
*/
AudioControlManager.prototype.setVolumeChangeListener = function(listener) {
var args = validator.validateArgs(arguments, [
* Plays the sound of a specific beep.
*/
AudioControlManager.prototype.playSound = function() {
- return undefined;
+ return;
};