コード例 #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
ファイル: test_include.py プロジェクト: jeskdef/bokeh
 class IncludesDelegateWithoutPrefix(HasProps):
     z = bcpi.Include(IsDelegate, use_prefix=False)
コード例 #5
0
ファイル: test_include.py プロジェクト: jeskdef/bokeh
 class IncludesDelegateWithPrefix(HasProps):
     z = bcpi.Include(IsDelegate, use_prefix=True)
コード例 #6
0
ファイル: test_include.py プロジェクト: zebulon2/bokeh
 class IncludesDelegateWithoutPrefix(HasProps):
     z = bcpi.Include(IsDelegate)
コード例 #7
0
ファイル: test_include.py プロジェクト: zebulon2/bokeh
 class IncludesDelegateWithPrefix(HasProps):
     z = bcpi.Include(IsDelegate, prefix="z")