mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
3b31e69e28
Summary: Changelog: [General] [Fixed] - License header cleanup Reviewed By: yungsters Differential Revision: D17952694 fbshipit-source-id: 17c87de7ebb271fa2ac8d00af72a4d1addef8bd0
26 lines
1.0 KiB
Java
26 lines
1.0 KiB
Java
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
package com.facebook.react.uimanager;
|
|
|
|
// Common conditionals:
|
|
// - `kind == PARENT` checks whether the node can host children in the native tree.
|
|
// - `kind != NONE` checks whether the node appears in the native tree.
|
|
|
|
public enum NativeKind {
|
|
// Node is in the native hierarchy and the HierarchyOptimizer should assume it can host children
|
|
// (e.g. because it's a ViewGroup). Note that it's okay if the node doesn't support children. When
|
|
// the HierarchyOptimizer generates children manipulation commands for that node, the
|
|
// HierarchyManager will catch this case and throw an exception.
|
|
PARENT,
|
|
// Node is in the native hierarchy, it may have children, but it cannot host them itself (e.g.
|
|
// because it isn't a ViewGroup). Consequently, its children need to be hosted by an ancestor.
|
|
LEAF,
|
|
// Node is not in the native hierarchy.
|
|
NONE
|
|
}
|