Interface LogEventChildHandler

All Superinterfaces:
EventChild, Serializable
All Known Subinterfaces:
DocumentView, EventChildHandler, IntelligentFormView, MainTabView, NavigationView, ResultSetView
All Known Implementing Classes:
AbstractDocumentView, AbstractStructureDialog, BaseWindow, CheckinDialog, DocumentViewImpl, EditStructureDialog, EventChildHandlerImpl, ExternalStorageCreateDocDialog, ExternalStorageDashBoardDialog, ExternalStorageUploadDialog, ExternalStorageUploadStatusDialog, HylandViewerImpl, IntelligentFormPopupWindow, IntelligentFormViewImpl, LogViewImpl, MainTabViewImpl, MediaViewerImpl, NavigationViewImpl, NewFolderDialog, OneDriveLoginDialog, OneDriveLogInErrorDialog, OneDriveLogInSuccessDialog, OneDriveLogOutErrorDialog, OneDriveManageShareDialog, OneDriveNewShareDialog, PdfjsViewerImpl, ResultSetViewImpl, RevisionHistoryDialog, SapDocumentViewImpl, SelectFolderClassDialog, ShareBaseCheckInDialog, ShareBaseCheckoutShareDialog, ShareBaseDuplicateDocumentUploadErrorDialog, ShareBaseLoginDialog, ShareBaseLogInErrorDialog, ShareBaseManageShareDialog, ShareBaseNewShareDialog, SimpleViewerImpl, UserSelectionDialog, VirtualViewerHTML5, WeblinkHandler

public interface LogEventChildHandler extends EventChild
Common interface providing log event methods.
  • Method Details

    • postErrorLogEvent

      void postErrorLogEvent(LogMessage message)
      Posts an event that will create a log-entry at error-level. A messagebox with the provided log-message will be shown.
      Parameters:
      message - error message
    • postInfoLogEvent

      void postInfoLogEvent(LogMessage message)
      Posts an event that will create a log-entry at info-level. A messagebox with the provided log-message will be shown only when forced by the log-message.
      Parameters:
      message - info message
    • postWarningLogEvent

      void postWarningLogEvent(LogMessage message)
      Posts an event that will create a log-entry at warning-level. A messagebox with the provided log-message will be shown only when forced by the log-message.
      Parameters:
      message - warning message
    • postErrorLogEvent

      void postErrorLogEvent(LogMessage message, org.zkoss.zk.ui.event.EventListener eventListener)
      Posts an event that will create a log-entry at error-level. A messagebox with the provided log-message will be shown.
      Parameters:
      message - error message
      eventListener - listener that will be called when the messagebox caused by this event is closed
    • postInfoLogEvent

      void postInfoLogEvent(LogMessage message, org.zkoss.zk.ui.event.EventListener eventListener)
      Posts an event that will create a log-entry at info-level. A messagebox with the provided log-message will be shown only when forced by the log-message.
      Parameters:
      message - info message
      eventListener - listener that will be called when the messagebox caused by this event is closed
    • postWarningLogEvent

      void postWarningLogEvent(LogMessage message, org.zkoss.zk.ui.event.EventListener eventListener)
      Posts an event that will create a log-entry at warning-level. A messagebox with the provided log-message will be shown only when forced by the log-message.
      Parameters:
      message - warning message
      eventListener - listener that will be called when the messagebox caused by this event is closed