class IncludesDelegateWithoutPrefix(HasProps):
     z = bcpi.Include(IsDelegate, use_prefix=False)
     y = Int(42)  # override the Include
 class IncludesDelegateWithoutPrefixUsingOverride(HasProps):
     z = bcpi.Include(IsDelegate, use_prefix=False)
     y = Override(default="world"
                  )  # override the Include changing just the default
 class IncludesDelegateWithPrefix(HasProps):
     z = bcpi.Include(IsDelegate, use_prefix=True)
     z_y = Int(57)  # override the Include
Esempio n. 4
0
 class IncludesDelegateWithoutPrefix(HasProps):
     z = bcpi.Include(IsDelegate, use_prefix=False)
Esempio n. 5
0
 class IncludesDelegateWithPrefix(HasProps):
     z = bcpi.Include(IsDelegate, use_prefix=True)
Esempio n. 6
0
 class IncludesDelegateWithoutPrefix(HasProps):
     z = bcpi.Include(IsDelegate)
Esempio n. 7
0
 class IncludesDelegateWithPrefix(HasProps):
     z = bcpi.Include(IsDelegate, prefix="z")