Class Container
java.lang.Object
com.aquima.interactions.composer.model.Element
com.aquima.interactions.composer.model.CompositeElement
com.aquima.interactions.composer.model.Container
- All Implemented Interfaces:
ICompositeElement
,IContainer
,IElement
,Serializable
- Direct Known Subclasses:
AnsweredContainer
,ButtonContainer
,FailedElement
,Page
,QuestionsContainer
,SolutionsContainer
,TableElement
,TreeListContainer
This class defines the composite container element.
- Since:
- 5.0
- Author:
- O. Kerpershoek, F. van der Meer
- See Also:
-
Field Summary
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
Copy constructor that creates a container based on another container.Container
(InferenceContext context, ContainerDefinition definition) Constructs a container from a definition using the provided context to evaluate dynamic text elements.Constructs an empty container with only a name.Container
(String name, ContentStyle contentStyle) Constructs an empty container with a name and content style. -
Method Summary
Modifier and TypeMethodDescriptionvoid
addMessage
(IMessage message) This method may be used to add a message to the container.void
This method may be used to clear any messages that were added to the container.collectMessages
(List<IMessage> result) This method duplicates the container element.boolean
Compare this container to another (not its elements, @seeCompositeElement.equalsContent(com.aquima.interactions.composer.ICompositeElement)
to compare its elements).This method returns the optional display text that should be used for this container.This method may return an instance ID indicating the instance that should be active when processing this container.Deprecated, for removal: This API element is subject to removal in a future version.since 15.3.IMessage[]
getMessages
(boolean includeChildren) This method returns all the messages that were reported during the expand of this container.getProperty
(String key) This method returns the property for the specified key.This method returns the name of the attribute through which the container was included by it's parent.Method returning the name of the container type.int
hashCode()
void
setDisplayText
(IMultilingualText displayText) This method can be used to set the display text of the container.void
setEntityContext
(EntityValue instanceId) This method can be used to specify the entity context for the container.protected void
Deprecated, for removal: This API element is subject to removal in a future version.setProperty
(String key, Serializable propertyValue) This method will add the property value for the specified property key.protected void
setReferenceAttribute
(String attribute) void
setTypeName
(String type) This method may be used to set the type name of the container.toString()
Methods inherited from class com.aquima.interactions.composer.model.CompositeElement
accept, addElement, addElements, equalsContent, getContentStyle, getElement, getElement, getElementCount, getElements, insertElement, removeAllElements, removeElement, replaceElementWithElements, setContentStyle, setElements
Methods inherited from class com.aquima.interactions.composer.model.Element
addPresentationStyle, evaluateTsl, getName, getParent, getPresentationStyles, getPropertyKeys, getRuntimeKey, getVisibilityCondition, hasFocus, hasPresentationStyle, isReadonly, isReadonlyInheritFromParent, isVisible, setFocus, setParent, setPresentationStyle, setPresentationStyles, setPresentationStyles, setReadonly, setReadonlyInheritFromParent, setRuntimeKey, setVisibilityCondition, setVisible
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface com.aquima.interactions.composer.ICompositeElement
accept, equalsContent, getContentStyle, getElement, getElement, getElementCount, getElements
Methods inherited from interface com.aquima.interactions.composer.IElement
getName, getParent, getPresentationStyles, getPropertyKeys, getRuntimeKey, hasFocus, hasPresentationStyle, isReadonly, isReadonlyInheritFromParent, isVisible
-
Constructor Details
-
Container
Constructs an empty container with only a name.- Parameters:
name
- The name of the container.
-
Container
Constructs an empty container with a name and content style.- Parameters:
name
- The name of the container.contentStyle
- The content style of the container (may be null)
-
Container
public Container(InferenceContext context, ContainerDefinition definition) throws RuleEngineException Constructs a container from a definition using the provided context to evaluate dynamic text elements.Note: This constructor will not add any child elements.
- Parameters:
context
- The context that should be used to evaluate dynamic text elements.definition
- The definition of the container.- Throws:
RuleEngineException
- This exception is thrown when the dynamic text elements could not be evaluated.
-
Container
Copy constructor that creates a container based on another container. The duplicateContents parameter may be used to specify if all contents should be duplicated. Note: Duplicating a container can be quite expensive depending on the amount of content that is present on the container. If the duplicate contents is false the children of the container are not copied or used thus creating an empty container. This constructor is mainly available for implementations of the duplicate method.- Parameters:
other
- The container which should be imitated.duplicateContents
- A boolean indicating it should create copies of the contents of the other container, or when false to ignore the other containers children.
-
-
Method Details
-
duplicate
This method duplicates the container element. -
clearMessages
public void clearMessages()This method may be used to clear any messages that were added to the container. -
addMessage
This method may be used to add a message to the container.- Parameters:
message
- The message that should be added.
-
getMessages
Description copied from interface:IContainer
This method returns all the messages that were reported during the expand of this container.- Specified by:
getMessages
in interfaceIContainer
- Parameters:
includeChildren
- Boolean indicating if messages reported by child containers should also be returned.- Returns:
- Array of messages that were reported during the expand of the container.
-
collectMessages
-
setEntityContext
This method can be used to specify the entity context for the container. The entity context will be used to determine which instance should be active when expanding and evaluating the container.- Parameters:
instanceId
- The ID of the instance that should be active for this container.
-
getEntityInstanceId
Description copied from interface:IContainer
This method may return an instance ID indicating the instance that should be active when processing this container.- Specified by:
getEntityInstanceId
in interfaceIContainer
- Returns:
- Entity context associated with the container.
-
getLastRepeatInstanceId
Deprecated, for removal: This API element is subject to removal in a future version.since 15.3. Use {@link IContainerContext.getContainerId()}, to be removed 16.0.Returns a reference to the last instance activated by a repeat expression, or null if no such instance exists.The reference may be the same as that returned by
getEntityInstanceId()
when the repeat expression is directly on this container. When the repeat expression is on an ancestor of this container, thengetEntityInstanceId()
returns null while this method returns the reference to the instance activated at the ancestor level.- Returns:
- a reference to the last instance activated by a repeat expression or null
-
setLastRepeatInstanceId
Deprecated, for removal: This API element is subject to removal in a future version.Sets the reference to the last instance activated by a repeat expression.- Parameters:
ref
- the reference to the activated instance
-
getReferenceAttribute
This method returns the name of the attribute through which the container was included by it's parent. When the container was not included by a parent and a relation the result will be null.- Returns:
- the name of the attribute through which the container was included by it's parent.
-
setReferenceAttribute
-
getDisplayText
Description copied from interface:IContainer
This method returns the optional display text that should be used for this container. If there is no display text defined for the container, this method will return a null value.- Specified by:
getDisplayText
in interfaceIContainer
- Returns:
- Display text for the runtime container.
-
setDisplayText
This method can be used to set the display text of the container.- Parameters:
displayText
- The display text that should be used for the container.
-
getTypeName
Description copied from interface:IContainer
Method returning the name of the container type.- Specified by:
getTypeName
in interfaceIContainer
- Returns:
- The type name of the container.
-
setTypeName
This method may be used to set the type name of the container.- Parameters:
type
- The type name for the container.
-
getProperty
Description copied from interface:IElement
This method returns the property for the specified key. If no property was defined for the specified key, a null value will be returned.- Specified by:
getProperty
in interfaceIElement
- Overrides:
getProperty
in classElement
- Parameters:
key
- The key for which the property value is requested.- Returns:
- The property value for the specified key, or null if no property was added for that key.
-
setProperty
Description copied from interface:IElement
This method will add the property value for the specified property key. If the property value is null, any existing property for that key will be removed.- Specified by:
setProperty
in interfaceIElement
- Overrides:
setProperty
in classElement
- Parameters:
key
- The key for which the property value should be set.propertyValue
- The property value that should be set.- Returns:
- The previous value that was present for the specified key.
-
toString
- Overrides:
toString
in classCompositeElement
-
equals
Compare this container to another (not its elements, @seeCompositeElement.equalsContent(com.aquima.interactions.composer.ICompositeElement)
to compare its elements).- Overrides:
equals
in classCompositeElement
- Parameters:
obj
- The object this instance should be compared to.- Returns:
- boolean indicating if the object is considered equal to this instance.
-
hashCode
public int hashCode()- Overrides:
hashCode
in classCompositeElement
-