Klasse FxLogWindow

Alle implementierten Schnittstellen:
EventTarget

public class FxLogWindow extends Stage
The FxLogWindow class represents a JavaFX window that displays log entries in a table view. It extends the Stage class.
  • Konstruktordetails

    • FxLogWindow

      public FxLogWindow()
      Create a new FxLogWindow instance with a new LogBuffer using the default capacity;
    • FxLogWindow

      public FxLogWindow(String title)
      Create a new FxLogWindow instance with a new LogBuffer using the default capacity;
      Parameter:
      title - the window title
    • FxLogWindow

      public FxLogWindow(int maxLines)
      Constructs a new instance of FxLogWindow with the specified maximum number of lines.
      Parameter:
      maxLines - the maximum number of lines to display in the log window
    • FxLogWindow

      public FxLogWindow(String title, int maxLines)
      Constructs a new instance of FxLogWindow with the specified maximum number of lines.
      Parameter:
      title - the window title
      maxLines - the maximum number of lines to display in the log window
    • FxLogWindow

      public FxLogWindow(com.dua3.utility.logging.LogBuffer logBuffer)
      Constructs a new instance of FxLogWindow using the provided LogBuffer.
      Parameter:
      logBuffer - the LogBuffer to use
    • FxLogWindow

      public FxLogWindow(String title, com.dua3.utility.logging.LogBuffer logBuffer)
      Constructs a new instance of FxLogWindow using the provided LogBuffer.
      Parameter:
      title - the window title
      logBuffer - the LogBuffer to use
  • Methodendetails

    • getLogBuffer

      public com.dua3.utility.logging.LogBuffer getLogBuffer()
      Retrieves the LogBuffer associated with this FxLogWindow.
      Gibt zurück:
      the LogBuffer instance used by this FxLogWindow