| 3605 | |
| 3606 | RawViewNodeId ViewNode::getRawId() const { |
| 3607 | return _rawId; |
| 3608 | } |
| 3609 | |
| 3610 | CSSAttributesManager& ViewNode::getCSSAttributesManager() { |
| 3611 | return _cssAttributesManager; |
| 3612 | } |
| 3613 | |
| 3614 | void ViewNode::setLastChildrenIndexerId(int lastChildrenIndexerId) { |
| 3615 | _lastChildrenIndexerId = lastChildrenIndexerId; |
| 3616 | } |
| 3617 | |
| 3618 | int ViewNode::getLastChildrenIndexerId() const { |
| 3619 | return _lastChildrenIndexerId; |
| 3620 | } |
nothing calls this directly
no test coverage detected