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