ProcessorContext
Contents
[
Hide
]Inheritance: java.lang.Object
public abstract class ProcessorContext
Base class for processor contexts. Provides properties and options used by the processor to execute processing.
Constructors
| Constructor | Description |
|---|---|
| ProcessorContext() | Initializes a new instance of this class. |
Methods
| Method | Description |
|---|---|
| getFontSettings() | Font settings used by the processor. |
| getLayoutOptions() | Document layout options used by the processor. |
| getWarningCallback() | Warning callback used by the processor. |
| setFontSettings(FontSettings value) | Font settings used by the processor. |
| setWarningCallback(IWarningCallback value) | Warning callback used by the processor. |
ProcessorContext()
public ProcessorContext()
Initializes a new instance of this class.
getFontSettings()
public FontSettings getFontSettings()
Font settings used by the processor.
Returns: FontSettings - The corresponding FontSettings value.
getLayoutOptions()
public LayoutOptions getLayoutOptions()
Document layout options used by the processor.
Returns: LayoutOptions - The corresponding LayoutOptions value.
getWarningCallback()
public IWarningCallback getWarningCallback()
Warning callback used by the processor.
Returns: IWarningCallback - The corresponding IWarningCallback value.
setFontSettings(FontSettings value)
public void setFontSettings(FontSettings value)
Font settings used by the processor.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| value | FontSettings | The corresponding FontSettings value. |
setWarningCallback(IWarningCallback value)
public void setWarningCallback(IWarningCallback value)
Warning callback used by the processor.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| value | IWarningCallback | The corresponding IWarningCallback value. |