Module control.typ.master

Types of master fields.

Expand source code
"""Types of master fields."""

from config import Names as N
from control.typ.related import Related


class Master(Related):
    """Type class for types with values in master tables."""

    widgetType = N.master

    def __init__(self, context):
        self.context = context

Classes

class Master (context)

Type class for types with values in master tables.

Initialization

Parameters

context : object
See below.
Expand source code
class Master(Related):
    """Type class for types with values in master tables."""

    widgetType = N.master

    def __init__(self, context):
        self.context = context

Ancestors

Subclasses

Class variables

var widgetType

Inherited members