Class ContainmentDelegateVisitor
java.lang.Object
com.aquima.interactions.composer.ds.delegate.ContainmentDelegateVisitor
- All Implemented Interfaces:
IContainmentVisitor
- Direct Known Subclasses:
ContainmentVisitor
Delegate visitor for easy datasource extension. All method calls are delegated to the delegate visitor without adding
any functionality.
- Since:
- 8.4
- Author:
- Jon van Leuven
-
Constructor Summary
ConstructorsConstructorDescriptionConstruct a visitor that delegates all method calls to the provided visitor. -
Method Summary
Modifier and TypeMethodDescriptionvoid
addContainer
(IReferenceDS reference, IContainerDS container) This method may be used to add an inline container to the container.void
addField
(IReferenceDS reference, IFieldDS field) This method may be used to add a field to the container.void
addReference
(IReferenceDS datasource, String name) This method may be used to add a containment to the container.
-
Constructor Details
-
ContainmentDelegateVisitor
Construct a visitor that delegates all method calls to the provided visitor.- Parameters:
visitor
- The delegate visitor, may not be null
-
-
Method Details
-
addField
Description copied from interface:IContainmentVisitor
This method may be used to add a field to the container.- Specified by:
addField
in interfaceIContainmentVisitor
- Parameters:
reference
- Data source providing the information about the relation.field
- Data source providing the field specific information.- Throws:
InitializationException
- This exception is thrown when the field could not be added due to incorrect data.
-
addContainer
public void addContainer(IReferenceDS reference, IContainerDS container) throws InitializationException Description copied from interface:IContainmentVisitor
This method may be used to add an inline container to the container.- Specified by:
addContainer
in interfaceIContainmentVisitor
- Parameters:
reference
- Data source providing the information about the relation.container
- Data source providing the container specific information.- Throws:
InitializationException
- This exception is thrown when the container could not be added due to incorrect data.
-
addReference
Description copied from interface:IContainmentVisitor
This method may be used to add a containment to the container.- Specified by:
addReference
in interfaceIContainmentVisitor
- Parameters:
datasource
- Data source providing the information about the relation.name
- The name of the element that should be included as content.- Throws:
InitializationException
- This exception is thrown when the containment could not be added due to incorrect data.
-