PanelTypesConfig

data class PanelTypesConfig(    val panelTypesName: String,     val implementationModule: ModuleReference,     val subPackageName: String? = null) : Serializable

Defines a reference to a collection of panel types available to a frontend.

Constructors

Link copied to clipboard
fun PanelTypesConfig(    panelTypesName: String,     implementationModule: ModuleReference,     subPackageName: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val implementationModule: ModuleReference

The module that contains the property that is an instance of the com.tomtom.ivi.platform.frontend.api.common.frontend.panels.PanelTypeSet class. See panelTypesName for details.

Link copied to clipboard
val panelTypesName: String

The name of the property that holds the panel types.

Link copied to clipboard
val subPackageName: String? = null

Optional sub package. If not null, this value is appended to the ModuleReference.packageName of the implementationModule property with a period in between.