A group of preferences.
This component represents a logical group of preferences. The preferences contained by this group is defined through the schema. The group has also a name by which it can be accessed.
The fields specified in the schema must be available as attributes and items of the group instance. It is up to the implementation how this is realized, however, most often one will implement __setattr__ and __getattr__ as well as the common mapping API.
The reason all the API fields are doubly underlined is to avoid name clashes.
__parent__
(Attribute)
The parent in the location hierarchy
__id__
*
-
TextLine
(default =
None
)
The id of the group.
__title__
*
-
MessageID
(default =
None
)
The title of the group used in the UI.
__description__
-
MessageID
(default =
None
)
The description of the group used in the UI.
__name__
-
TextLine
(default =
None
)
Traverse the parent with this name to get the object.
__schema__
-
InterfaceField
(default =
None
)
Schema describing the preferences of the group.
* = required
There are no methods specified.