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
Exemple #4
0
 class IncludesDelegateWithoutPrefix(HasProps):
     z = bcpi.Include(IsDelegate, use_prefix=False)
Exemple #5
0
 class IncludesDelegateWithPrefix(HasProps):
     z = bcpi.Include(IsDelegate, use_prefix=True)
Exemple #6
0
 class IncludesDelegateWithoutPrefix(HasProps):
     z = bcpi.Include(IsDelegate)
Exemple #7
0
 class IncludesDelegateWithPrefix(HasProps):
     z = bcpi.Include(IsDelegate, prefix="z")