public class StructureLogger extends Object
| Modifier and Type | Method and Description |
|---|---|
static void |
log(javafx.scene.Node node,
Appendable output)
Logs the
Node and all its descendants. |
static void |
logCss(javafx.scene.Node node,
int maxDepth,
Appendable output)
Logs the
Node including its CssMetaData and all its
descendants. |
static void |
logFull(javafx.scene.Node node,
Appendable output)
Logs the full structure that the
Node is involved in. |
public static void logFull(javafx.scene.Node node,
Appendable output)
throws IOException
Node is involved in.node - Node.output - Appendable.IOException - If fails to log.public static void log(javafx.scene.Node node,
Appendable output)
throws IOException
Node and all its descendants.node - Node.output - Appendable.IOException - If fails to log.public static void logCss(javafx.scene.Node node,
int maxDepth,
Appendable output)
throws IOException
Node including its CssMetaData and all its
descendants.node - Node.maxDepth - Maximum depth to recurse before stopping. Note that CSS output is
quite large, hence need to limit depth. Use -1 for
unlimited depth.output - Appendable.IOException - If fails to log.Copyright © 2005–2019. All rights reserved.