Interface CoreObjectArguments

Index

Properties

Properties

optional public init?: Function

An overridable method called when objects are instantiated. By default, does nothing unless it is overridden during class definition. NOTE: If you do override init for a framework class like Ember.View or Ember.ArrayController, be sure to call this._super() in your init declaration! If you don't, Ember may not have an opportunity to do important setup work, and you'll see strange behavior in your application.

optional public willDestroy?: Function

Override to implement teardown.