(callback: (child: View) => boolean)
| 148 | } |
| 149 | |
| 150 | public eachChildView(callback: (child: View) => boolean) { |
| 151 | super.eachChildView(callback); |
| 152 | if (this.hasActionBar) { |
| 153 | callback(this.actionBar); |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | get _childrenCount(): number { |
| 158 | return (this.content ? 1 : 0) + (this._actionBar ? 1 : 0); |
no test coverage detected