Package com.pd4ml
Interface ProgressListener
-
public interface ProgressListener
-
-
Field Summary
Fields Modifier and Type Field Description static int
CONVERSION_BEGIN
static int
CONVERSION_END
static int
DOC_RENDER_IN_PROGRESS
static int
DOC_WRITE_BEGIN
static int
DOCX_PRE_RENDER_DONE
static int
HTML_LAYOUT_DONE
static int
HTML_LAYOUT_IN_PROGRESS
static int
HTML_PARSED
static int
MAIN_DOC_READ
static int
PAGEBREAKS_ALIGNED
static int
RENDERER_TREE_BUILT
static int
RTF_PRE_RENDER_DONE
static int
TOC_GENERATED
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
progressUpdate(int messageID, int progress, java.lang.String message, long msec)
Interface for a class receives/logs conversion progress events
-
-
-
Field Detail
-
CONVERSION_BEGIN
static final int CONVERSION_BEGIN
- See Also:
- Constant Field Values
-
MAIN_DOC_READ
static final int MAIN_DOC_READ
- See Also:
- Constant Field Values
-
HTML_PARSED
static final int HTML_PARSED
- See Also:
- Constant Field Values
-
RENDERER_TREE_BUILT
static final int RENDERER_TREE_BUILT
- See Also:
- Constant Field Values
-
HTML_LAYOUT_IN_PROGRESS
static final int HTML_LAYOUT_IN_PROGRESS
- See Also:
- Constant Field Values
-
HTML_LAYOUT_DONE
static final int HTML_LAYOUT_DONE
- See Also:
- Constant Field Values
-
PAGEBREAKS_ALIGNED
static final int PAGEBREAKS_ALIGNED
- See Also:
- Constant Field Values
-
TOC_GENERATED
static final int TOC_GENERATED
- See Also:
- Constant Field Values
-
DOC_RENDER_IN_PROGRESS
static final int DOC_RENDER_IN_PROGRESS
- See Also:
- Constant Field Values
-
DOC_WRITE_BEGIN
static final int DOC_WRITE_BEGIN
- See Also:
- Constant Field Values
-
CONVERSION_END
static final int CONVERSION_END
- See Also:
- Constant Field Values
-
RTF_PRE_RENDER_DONE
static final int RTF_PRE_RENDER_DONE
- See Also:
- Constant Field Values
-
DOCX_PRE_RENDER_DONE
static final int DOCX_PRE_RENDER_DONE
- See Also:
- Constant Field Values
-
-
Method Detail
-
progressUpdate
void progressUpdate(int messageID, int progress, java.lang.String message, long msec)
Interface for a class receives/logs conversion progress events- Parameters:
messageID
- message typeprogress
- estimated progress statemessage
- message (if any)msec
- time since the conversion begin
-
-