forked from Jibo-Revival-Group/JiboOs
39 lines
915 B
JavaScript
39 lines
915 B
JavaScript
|
|
/**
|
||
|
|
* Subcomponent identifier.
|
||
|
|
* @name jibo.face.views.Subcomponent.TYPE
|
||
|
|
* @type {String}
|
||
|
|
* @default 'TouchInteractive'
|
||
|
|
* @readOnly
|
||
|
|
*/
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Type of Subcomponnet, used for identification
|
||
|
|
* @name jibo.face.views.Subcomponent#type
|
||
|
|
* @type {String}
|
||
|
|
* @readOnly
|
||
|
|
*/
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Owning Component.
|
||
|
|
* @name jibo.face.views.Subcomponent.component
|
||
|
|
* @type {Boolean}
|
||
|
|
* @protected
|
||
|
|
*/
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Type of Subcomponent, used for mapping storage and retrieval.
|
||
|
|
* @name jibo.face.views.Subcomponent._type
|
||
|
|
* @type {String}
|
||
|
|
* @private
|
||
|
|
*/
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Initialize Subcomponent.
|
||
|
|
* @method jibo.face.views.Subcomponent#init
|
||
|
|
* @param {jibo.face.views.Component} component - Component this Subcomponent is being added to.
|
||
|
|
*/
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Destroy.
|
||
|
|
* @method jibo.face.views.Subcomponent#destroy
|
||
|
|
*/
|