Interface IDocumentProcessingSettingsManager
- All Known Implementing Classes:
DocumentProcessingSettingsManager
public interface IDocumentProcessingSettingsManager
Control state of document load-time and save-time additional processing.
Currently load-time and save-time processing is used to inject externally-stored localized strings during document
load and extract localized string from document and store them to external storage during document save.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanGet current state of document load-time processing.booleanGet current state of document save-time processing.voidLock document load-time processing.voidLock document save-time processing.voidUnlock document load-time processing.voidUnlock document save-time processing.
-
Method Details
-
isDocumentLoadProcessingEnabled
boolean isDocumentLoadProcessingEnabled()Get current state of document load-time processing.- Returns:
trueif document load-time processing enabled,falseotherwise.
-
isDocumentSaveProcessingEnabled
boolean isDocumentSaveProcessingEnabled()Get current state of document save-time processing.- Returns:
trueif document save-time processing enabled,falseotherwise.
-
lockDocumentLoadProcessing
void lockDocumentLoadProcessing()Lock document load-time processing. -
unlockDocumentLoadProcessing
void unlockDocumentLoadProcessing()Unlock document load-time processing. -
lockDocumentSaveProcessing
void lockDocumentSaveProcessing()Lock document save-time processing. -
unlockDocumentSaveProcessing
void unlockDocumentSaveProcessing()Unlock document save-time processing.
-