public interface DocumentListener
| Modifier and Type | Method and Description |
|---|---|
void |
documentLoaded()
Indicates document layout has complete, e.g.
|
void |
documentStarted()
Indicates document has been requested (e.g.
|
void |
onLayoutException(Throwable t)
Called when document layout failed with an exception.
|
void |
onRenderException(Throwable t)
Called when document render failed with an exception.
|
void documentStarted()
void documentLoaded()
void onLayoutException(Throwable t)
Throwable objects thrown (except for
ThreadDeath) during layout and not otherwise handled will
be provided to this method. If a DocumentListener has been
defined an XHTML panel, the listener is entirely responsible for
handling the exception. No other action will be taken.void onRenderException(Throwable t)
Throwable objects thrown (except for
ThreadDeath) during render and not otherwise handled will
be provided to this method. If a DocumentListener has been
defined an XHTML panel, the listener is entirely responsible for
handling the exception. No other action will be taken.Copyright © 2018. All rights reserved.