コード例 #1
0
ファイル: BufferManager.cs プロジェクト: adamedx/shango
 public BufferManager(
     ICommandPresentation commandPresentation)
 {
     _virtualLinesCount = _defaultVirtualLinesCount;
     _commandPresentation = commandPresentation;
 }
コード例 #2
0
 public override void Execute(ICommandPresentation presentation)
 {
     MessageBox.Show("Run tests clicked!");
 }
コード例 #3
0
ファイル: RunTestsCommand.cs プロジェクト: citizenmatt/gallio
 public override void Execute(ICommandPresentation presentation)
 {
     MessageBox.Show("Run tests clicked!");
 }
コード例 #4
0
 /// <inheritdoc />
 public virtual void Update(ICommandPresentation presentation)
 {
 }
コード例 #5
0
 /// <inheritdoc />
 public virtual void Execute(ICommandPresentation presentation)
 {
 }
コード例 #6
0
ファイル: BaseCommand.cs プロジェクト: dougrathbone/mbunit-v3
 /// <inheritdoc />
 public virtual void Update(ICommandPresentation presentation)
 {
 }
コード例 #7
0
ファイル: BaseCommand.cs プロジェクト: dougrathbone/mbunit-v3
 /// <inheritdoc />
 public virtual void Execute(ICommandPresentation presentation)
 {
 }