The main instance that manages this component
The parent component that manages this component
renders the scope
Calls each of the listeners registered for a given event.
Return an array listing the events for which the emitter has registered listeners.
returns a component options given name
Returns the id of this component
Returns the last error. That raised an error:*
event
Returns a /
path to the component from the root.
Returns whether this component is enabled or not
Add a listener to another EventEmitter.
This provides an event subscription list facility. Allowing subclasses to listen to other emitters and remove all or some listeners with a single call to Model.stopListening, later.
the event emitter to listen to
the name of the event to listen to
the callback for the event handler
Return the number of listeners listening to a given event.
Return the listeners registered for a given event.
Add a listener for a given event.
Add a one-time listener for a given event.
Remove all listeners, or those of the specified event.
Remove the listeners of a given event.
Safely set an attribute(s).
If the attribute set succeeds, a change:[attribute name]
event is fired.
change:[attribute name]
event handler receives this
object, the new value
and options
as arguments.
Additionally a change
event is also fired when all changes succeed. The change
event receives this
object and the options
as arguments.
the name of the attribute or map of values
the new value of the attribute
this object is sent down to the event handlers, useful to things down to your
handler. if options.silent
is true then events are not fired.
Sets the parent of this component
the new parent of this component
Removes to one or more listeners that were set earlier with calls to Model.listenTo.
Use the arguments to filter subscriptions. eg: model.stopListening(em)
will remove all
listeners on emitter em
. model.stopListening(em, 'change')
will remove all listeners for
change
event on emitter em
.
the event emitter on which the listener was set
the event to be removed
the callback to be removed
Returns the JSON representation of the component options.
This value if passed into constructor will instantiate a component that behaves the same as this component.
Returns the name of the component
Returns a string tag that categorizes the component. e.g. trans, render
A generic scope, that can draw points or lines based on user code