Author: ygrego Date: 2015-03-03 14:13:47 +0000 (Tue, 03 Mar 2015) New Revision: 907 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/907 Log: A new proprety("outputs") added to this class. In order to this one contains differents audio or video outputs of the terminal. The constructor waiting for this kind of object in parameter. Modified: oipf/js/impl/model/LocalSystem.js Modified: oipf/js/impl/model/LocalSystem.js =================================================================== --- oipf/js/impl/model/LocalSystem.js 2015-03-03 14:08:42 UTC (rev 906) +++ oipf/js/impl/model/LocalSystem.js 2015-03-03 14:13:47 UTC (rev 907) @@ -30,8 +30,18 @@ */ tuners: null, - init: function(tuners) { + /* + * Description: + * A collection of AVOutput objects representing the audio and video outputs of the platform. Applications + * MAY use these objects to configure and control the available outputs. + * + * Visibility Type: readonly AVOutputCollection + */ + outputs: null, + + init: function(tuners, outputs) { this.tuners = tuners; + this.outputs = outputs; } }); \ No newline at end of file
participants (1)
-
ygregoï¼ users.nuiton.org