Go to the source code of this file.
Components utils import |
( |
"resource://gre/modules/XPCOMUtils.jsm" |
| ) |
|
Initial value:= {
classID: Components.ID(
"{f87e3ba3-c3fe-437a-8b2f-3aeb48536a9b}"),
contractID:
"@getnightingale.com/equalizer-presets/mutable;1",
QueryInterface: XPCOMUtils.generateQI([Components.interfaces.ngIMutableEqualizerPreset]),
return this._name;
},
setName:
function(
aName) {
},
get values() {
return this._values;
},
setValues: function(aValues) {
if(aValues instanceof Components.interfaces.nsIArray &&
aValues.length == 10)
this._values = aValues;
else
throw Components.results.NS_ERROR_ILLEGAL_VALUE;
}
}
sbDeviceFirmwareAutoCheckForUpdate prototype contractID
sbOSDControlService prototype QueryInterface
sbDeviceFirmwareAutoCheckForUpdate prototype classDescription
sbDeviceFirmwareAutoCheckForUpdate prototype classID
Definition at line 40 of file ngMutableEqualizerPreset.js.