Class: MObject

IDEE/Object~MObject


import MObject from 'IDEE/Object';

Objeto principal API-IDEE. Esta clase crea un Objeto que gestiona los eventos.

new MObject()

facade/js/Object.js, line 13

Constructor principal de la clase.

Methods

fire(eventType, argsParam)

facade/js/Object.js, line 94

Establece "callback" cuando se carga la instancia.

Name Type Description
eventType IDEE.eventType

Evento "IDEE.evt".

argsParam Array

Matriz de argumentos.

on(eventType, listener, optThis)

facade/js/Object.js, line 40

Establece "callback" cuando se carga la instancia.

Name Type Description
eventType IDEE.eventType

Evento "IDEE.evt".

listener function

Función "callback".

optThis Object

"Scope", valor de "this".

once(eventType, listener, optThis)

facade/js/Object.js, line 54

Establece "callback" cuando se carga la instancia.

Name Type Description
eventType IDEE.eventType

Evento "IDEE.evt".

listener function

Función "callback".

optThis Object

"Scope", valor de "this".

un(eventType, listener, optThis)

facade/js/Object.js, line 68

Establece "callback" cuando se carga la instancia.

Name Type Description
eventType IDEE.eventType

Event "IDEE.evt".

listener function

Function "callback".

optThis Object

"Scope", valor de "this".

unByKey(eventType, key)

facade/js/Object.js, line 81

Establece "callback" cuando se carga la instancia.

Name Type Description
eventType IDEE.eventType

Evento "IDEE.evt".

key String

"Key" del evento.