Class Element
java.lang.Object
com.aquima.interactions.composer.model.Element
- All Implemented Interfaces:
IElement
,Serializable
- Direct Known Subclasses:
Asset
,Button
,CompositeElement
,Field
,HiddenElement
,Image
,InstanceListOrder
,Link
,TextItem
Base class for all runtime page elements.
- Since:
- 5.0
- Author:
- O. Kerpershoek
- See Also:
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionThis method will invoke the visitor for this runtime element.This method can be used to add a the style to the runtime element.boolean
protected static IMultilingualText
evaluateTsl
(InferenceContext context, IDynamicText displayText) getName()
This method returns the name of the element.This method returns the parent container the element is contained in, or null if the element is not assigned to a container.This method will return the styles that should be used when rendering the element.getProperty
(String key) This method returns the property for the specified key.String[]
This method returns all the property keys for which a property value has been added to this element.This method will return the unique identifier of the element within a page.boolean
hasFocus()
This method returns a boolean indicating if this element has the focus.int
hashCode()
boolean
This method will return true if the PresentationStyle is present on this element.final boolean
This method returns a boolean indicating if the element should be displayed read-only.boolean
This method returns a boolean indicating whether to inherit the readonly state from its parent container.boolean
This method returns a boolean indicating if the element should be visible.setFocus
(boolean focus) This method can be used to override the focus of the runtime element.protected void
setParent
(ICompositeElement parent) This method can be used to override the style of the runtime element.setPresentationStyles
(PresentationStyle[] styles) This method can be used to override the style of the runtime element.setPresentationStyles
(String[] styles) This method can be used to override the style of the runtime element.setProperty
(String key, Serializable propertyValue) This method will add the property value for the specified property key.setReadonly
(boolean isReadonly) This method can be used to change the read-only status of the runtime element.setReadonlyInheritFromParent
(boolean inheritFromParent) This method can be used to change the behavior of whether to inherit the readonly state from its parent container.void
setRuntimeKey
(RuntimeKey key) void
setVisibilityCondition
(String visibilityCondition) setVisible
(boolean visible) This method can be used to change the visibility of the runtime element.
-
Field Details
-
name
-
-
Constructor Details
-
Element
Constructs a runtime element for the specified name.- Parameters:
name
- The name of the runtime element (mandatory)
-
Element
-
Element
-
-
Method Details
-
evaluateTsl
protected static IMultilingualText evaluateTsl(InferenceContext context, IDynamicText displayText) throws RuleEngineException - Throws:
RuleEngineException
-
getParent
Description copied from interface:IElement
This method returns the parent container the element is contained in, or null if the element is not assigned to a container. -
setParent
-
getRuntimeKey
Description copied from interface:IElement
This method will return the unique identifier of the element within a page. An element with the same name may be included multiple times on the same page, but each instance is assigned it's own unique runtime key do distinguish between the elements.
Note: Elements get a runtime key assigned during the final evaluation of a page. When an element is created outside a page, or during the creation of the page, the runtime key will still be unknown.- Specified by:
getRuntimeKey
in interfaceIElement
- Returns:
- The unique runtime key of the element within a page.
-
setRuntimeKey
-
getName
Description copied from interface:IElement
This method returns the name of the element. This name corresponds to the name of the element definition the element is based upon. -
getPresentationStyles
Description copied from interface:IElement
This method will return the styles that should be used when rendering the element. The styles is an optional parameter, and as such the styles may not have been set (empty array value).- Specified by:
getPresentationStyles
in interfaceIElement
- Returns:
- The styles information of the element, never null, but could be an empty array.
-
setPresentationStyles
This method can be used to override the style of the runtime element. The style of an element is optional, so this method may also be used to clear any existing style information by invoking this method with a null value.- Parameters:
styles
- The new style information for the element.- Returns:
- Pointer to this element to allow method chaining.
-
setPresentationStyles
This method can be used to override the style of the runtime element. The style of an element is optional, so this method may also be used to clear any existing style information by invoking this method with a null value.- Parameters:
styles
- The new style information for the element.- Returns:
- Pointer to this element to allow method chaining.
-
hasPresentationStyle
Description copied from interface:IElement
This method will return true if the PresentationStyle is present on this element.- Specified by:
hasPresentationStyle
in interfaceIElement
- Parameters:
style
- The PresentationStyle to find- Returns:
- True if the presentationStyle was present, false otherwise.
-
addPresentationStyle
This method can be used to add a the style to the runtime element.- Parameters:
style
- The new style information to the element, must not be null.- Returns:
- Pointer to this element to allow method chaining.
-
setPresentationStyle
This method can be used to override the style of the runtime element. The style of an element is optional, so this method may also be used to clear any existing style information by invoking this method with a null value.- Parameters:
style
- The new style information for the element.- Returns:
- Pointer to this element to allow method chaining.
-
setFocus
This method can be used to override the focus of the runtime element. The focus of an element is default set to false.- Parameters:
focus
- The new focus setting for the element.- Returns:
- Pointer to this element to allow method chaining.
-
hasFocus
public boolean hasFocus()Description copied from interface:IElement
This method returns a boolean indicating if this element has the focus. -
isReadonlyInheritFromParent
public boolean isReadonlyInheritFromParent()Description copied from interface:IElement
This method returns a boolean indicating whether to inherit the readonly state from its parent container.- Specified by:
isReadonlyInheritFromParent
in interfaceIElement
- Returns:
- boolean indicating whether to inherit the readonly state from its parent container.
-
setReadonlyInheritFromParent
This method can be used to change the behavior of whether to inherit the readonly state from its parent container.- Parameters:
inheritFromParent
- The new readonly inherit from parent behavior for the element.- Returns:
- Pointer to this element to allow method chaining.
-
isReadonly
public final boolean isReadonly()Description copied from interface:IElement
This method returns a boolean indicating if the element should be displayed read-only. An element is read-only when the element itself is specified as being read-only, or whenIElement.isReadonlyInheritFromParent()
returns true and the parent container (if available) is marked as read-only.- Specified by:
isReadonly
in interfaceIElement
- Returns:
- boolean indicating if the element should be displayed read-only.
-
setReadonly
This method can be used to change the read-only status of the runtime element. When this method is invoked with the same read-only setting as was already defined, the method call will be ignored. When the read-only status of the element has changed, the listener (if set) will be invoked to notified of the change.- Parameters:
isReadonly
- The new read-only status for the element.- Returns:
- Pointer to this element to allow method chaining.
-
isVisible
public boolean isVisible()Description copied from interface:IElement
This method returns a boolean indicating if the element should be visible. An element is visible when the element itself is specified as being visible and the parent container (if available) is visible. -
setVisible
This method can be used to change the visibility of the runtime element. When this method is invoked with the same visibility setting as was already defined, the method call will be ignored. When the visibility status of the element has changed, the listener (if set) will be invoked to notified of the change.- Parameters:
visible
- The new visibility status for the element.- Returns:
- Pointer to this element to allow method chaining.
-
getVisibilityCondition
-
setVisibilityCondition
-
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
- 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
- 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.
-
getPropertyKeys
Description copied from interface:IElement
This method returns all the property keys for which a property value has been added to this element.- Specified by:
getPropertyKeys
in interfaceIElement
- Returns:
- An array containing all the property keys for which a value is present.
-
accept
This method will invoke the visitor for this runtime element.- Specified by:
accept
in interfaceIElement
- Parameters:
visitor
- The visitor that should be invoked.- Returns:
- The visitor passed to this method.
- Throws:
AppException
- This exception may be raised by the visitor implementation.
-
equals
-
hashCode
public int hashCode()
-