2018-02-14 09:31:10 -08:00
|
|
|
/*
|
2018-07-11 09:33:24 -07:00
|
|
|
* Copyright (c) 2017-present, Facebook, Inc.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the MIT license found in the LICENSE
|
|
|
|
* file in the root directory of this source tree.
|
2018-02-14 09:31:10 -08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
package com.facebook.yoga;
|
|
|
|
|
|
|
|
import com.facebook.proguard.annotations.DoNotStrip;
|
|
|
|
|
|
|
|
@DoNotStrip
|
2018-04-01 18:27:04 -07:00
|
|
|
public interface YogaNodeCloneFunction {
|
2018-02-14 09:31:10 -08:00
|
|
|
|
|
|
|
@DoNotStrip
|
2018-04-01 18:27:04 -07:00
|
|
|
YogaNode cloneNode(YogaNode oldNode, YogaNode parent, int childIndex);
|
2018-02-14 09:31:10 -08:00
|
|
|
}
|