Lines Matching defs:constructor
60 * @constructor
73 * way to configure events listeners and plugins for the instance, as part of the constructor call:
78 * <dd>An event name to listener function map, to register event listeners for the "on" moment of the event. A constructor convenience property for the <a href="Base.html#method_on">on</a> method.</dd>
80 * <dd>An event name to listener function map, to register event listeners for the "after" moment of the event. A constructor convenience property for the <a href="Base.html#method_after">after</a> method.</dd>
82 * <dd>An object, or array of objects, to register as bubble targets for bubbled events fired by this instance. A constructor convenience property for the <a href="EventTarget.html#method_addTarget">addTarget</a> method.</dd>
84 * <dd>A plugin, or array of plugins to be plugged into the instance (see PluginHost's plug method for signature details). A constructor convenience property for the <a href="Plugin.Host.html#method_plug">plug</a> method.</dd>
158 * @param {Object} config The constructor configuration object
164 this._eventPrefix = this.constructor.EVENT_PREFIX || this.constructor.NAME;
217 * refers to the configuration object passed to the constructor.
318 * refers to the configuration object passed to the constructor.
340 // Fix constructor
341 Base.prototype.constructor = Base;