.l-main-section
h2 onAllChangesDone variable
p.location-badge.
exported from angular2/annotations
defined in angular2/src/core/annotations_impl/annotations.ts (line 1127)
:markdown
Notify a directive when the bindings of all its children have been checked (whether they have
changed or not).
## Example:
```
@Directive({
selector: '[class-set]',
lifecycle: [onAllChangesDone]
})
class ClassSet {
onAllChangesDone() {
}
}
```