Class ComposerDS
java.lang.Object
com.aquima.interactions.portal.ds.xml.parsing.ComposerDS
- All Implemented Interfaces:
IComposerDS
,IReportingDS
Internal wrapper class to add inline justifaction texts to the composer.
- Since:
- 8.3
- Author:
- Jon van Leuven
-
Field Summary
Fields inherited from interface com.aquima.interactions.composer.ds.IComposerDS
CATEGORY
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
ComposerDS
(IComposerDS delegate, XmlJustificationAsset[] assets) -
Method Summary
Modifier and TypeMethodDescriptionvoid
addMessage
(ErrorCode code, String[] parameters, Severity severity) This method will add an initialization error to the report for the specified error code and parameters.void
iterateContent
(IContentVisitor visitor) This method should iterate over all the elements that need to be available in the composer, and add them to the provided visitor.void
iterateStyles
(IContentStyleVisitor visitor) This method should iterate over all the styles that may be used in documents, and add them to the supplied visitor.
-
Constructor Details
-
ComposerDS
-
-
Method Details
-
iterateContent
Description copied from interface:IComposerDS
This method should iterate over all the elements that need to be available in the composer, and add them to the provided visitor.- Specified by:
iterateContent
in interfaceIComposerDS
- Parameters:
visitor
- The visitor that should be used to add the elements to.- Throws:
InitializationException
- This exception is thrown when the elements could not be added.
-
iterateStyles
Description copied from interface:IComposerDS
This method should iterate over all the styles that may be used in documents, and add them to the supplied visitor.Note: This method should be invoked before the iterateContent method, as the content depends on style definitions being present.
- Specified by:
iterateStyles
in interfaceIComposerDS
- Parameters:
visitor
- The visitor that should be used to add the style definitions to.- Throws:
InitializationException
- This exception is thrown when the style definitions could not be initialized due to a fatal error.
-
addMessage
Description copied from interface:IReportingDS
This method will add an initialization error to the report for the specified error code and parameters.- Specified by:
addMessage
in interfaceIReportingDS
- Parameters:
code
- Error code identifying the message.parameters
- Optional array of parameters for the message.severity
- The severity of the message.
-