Package org.jopensignature.sign
Interface DocumentRendererListener
-
- All Superinterfaces:
java.util.EventListener
- All Known Implementing Classes:
ApplyDocumentRendererMessageHandler
public interface DocumentRendererListener extends java.util.EventListener
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
DocumentRendererListener.AbstractDocumentRendererEvent
static class
DocumentRendererListener.PageContentsChangedEvent
static class
DocumentRendererListener.TotalPageCountChangedEvent
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
pageContentsChanged(DocumentRendererListener.PageContentsChangedEvent e)
Will be called if the page contents changed.void
totalPageCountChanged(DocumentRendererListener.TotalPageCountChangedEvent e)
Will be called if the number of total pages changed.
-
-
-
Method Detail
-
totalPageCountChanged
void totalPageCountChanged(DocumentRendererListener.TotalPageCountChangedEvent e)
Will be called if the number of total pages changed.- Parameters:
e
-
-
pageContentsChanged
void pageContentsChanged(DocumentRendererListener.PageContentsChangedEvent e)
Will be called if the page contents changed. Such changes include the size and the contents of the page.- Parameters:
e
-
-
-