Expose print function to java

Summary: Allow printing a node from java

Reviewed By: astreet

Differential Revision: D4962456

fbshipit-source-id: 8f62ed6724490e621fbc11573b2a9b25c56e51f1
This commit is contained in:
Emil Sjolander
2017-04-27 16:19:17 -07:00
committed by Facebook Github Bot
parent 77c05b5ff6
commit 83fddd8af6
2 changed files with 16 additions and 0 deletions

View File

@@ -667,4 +667,14 @@ public class YogaNode {
public Object getData() {
return mData;
}
private native void jni_YGNodePrint(long nativePointer);
/**
* Use the set logger (defaults to adb log) to print out the styles, children, and computed
* layout of the tree rooted at this node.
*/
public void print() {
jni_YGNodePrint(mNativePointer);
}
}