Kanzi framework  3.9.1
Java API
ParallelActivityHostConceptMetadata Interface Reference

Metadata definitions for ParallelActivityHostConcept. More...

Inheritance diagram for ParallelActivityHostConceptMetadata:
[legend]

Public Attributes

DynamicPropertyType< Boolean > ActivationStackProperty
 
DynamicPropertyType< Boolean > BringActivatedToFrontProperty
 Sets whether to show the activated Activity in front within its Parallel Activity Host.This property affects the z-order of the activated Activity within the same Activity priority layer: More...
 
AbstractMetaclass metaclass = new AbstractMetaclass("Kanzi.ParallelActivityHostConcept")
 Metaclass for ParallelActivityHostConcept.
 
DynamicPropertyType< String > ParallelActivityHostContentProperty
 Describes the content of a Parallel Activity Host. More...
 

Detailed Description

Metadata definitions for ParallelActivityHostConcept.

Member Data Documentation

◆ ActivationStackProperty

DynamicPropertyType<Boolean> ActivationStackProperty
Initial value:
=
new DynamicPropertyType<>("ParallelActivityHostConcept.ActivationStack", Boolean.class)

◆ BringActivatedToFrontProperty

DynamicPropertyType<Boolean> BringActivatedToFrontProperty
Initial value:
= new DynamicPropertyType<>(
"ParallelActivityHostConcept.BringActivatedToFront", Boolean.class)

Sets whether to show the activated Activity in front within its Parallel Activity Host.This property affects the z-order of the activated Activity within the same Activity priority layer:

  • When enabled, the Activity is shown in front.
  • When disabled, the z-order of the activated child Activity is determined by the order in which you added that Activity to the parent Parallel Activity Host.

◆ ParallelActivityHostContentProperty

DynamicPropertyType<String> ParallelActivityHostContentProperty
Initial value:
= new DynamicPropertyType<>(
"ParallelActivityHostConcept.ParallelActivityHostContent", String.class)

Describes the content of a Parallel Activity Host.

The Parallel Activity Host uses this content to instantiate Activity prefabs and control the status and lifetime of its child Activities. This property is not directly editable by a Kanzi Studio user. The ActivityBrowserController sets the value of this property according to the changes done to the state of the Activity Tree in the ActivityBrowser. The expected format for the property value is a list of Activity descriptions. Each of this Activity description contains:

  • The name of the Activity.
  • A boolean value describing whether the Activity is going to be active on the Parallel Activity Host activation. When set to true the Activity is going to be active, when set to false, the Activity is not going to be active.
  • The path to the prefab of the Activity.
  • The priority layer value of the Activity. The priority layer value decides the z-order of the child Activity. The child Activity with a higher priority value, is displayed on the top of a child Activity with the lower priority value. The z-order of the child Activities with the same priority value depends on their order of addition to the Activity Host. The latest added child Activity is always displayed on top on the existing child Activities with the same priority value. The values in this property must be separated by a comma. For example, {{name1,1,path1,0},{name2,0,path2,1}}.