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:
committed by
Facebook Github Bot
parent
77c05b5ff6
commit
83fddd8af6
@@ -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);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user