public final class DialogPaneHelper
extends java.lang.Object
DialogPane related functions.| Modifier and Type | Method and Description |
|---|---|
static void |
setExceptionContent(javafx.scene.control.DialogPane dialogPane,
@Nullable java.lang.Throwable exception)
Add an
Exception's stack trace to a DialogPane as an expandable content. |
static void |
setLogRecordsContent(javafx.scene.control.DialogPane dialogPane,
@Nullable java.util.Collection<java.util.logging.LogRecord> logRecords)
Add a
LogRecord list view to a DialogPane as an expandable content. |
public static void setExceptionContent(javafx.scene.control.DialogPane dialogPane,
@Nullable java.lang.Throwable exception)
Exception's stack trace to a DialogPane as an expandable content.dialogPane - The dialog pane to add the exception to.exception - The exception to add (may be null).DialogPane.setExpandableContent(javafx.scene.Node)public static void setLogRecordsContent(javafx.scene.control.DialogPane dialogPane,
@Nullable java.util.Collection<java.util.logging.LogRecord> logRecords)
LogRecord list view to a DialogPane as an expandable content.dialogPane - The dialog pane to add the log records to.logRecords - The log records to add (may be null).DialogPane.setExpandableContent(javafx.scene.Node)