Chronos Plugins  5.2.0
This documentation covers the plugin interfaces definitions and an example implementation.
MockPlugin.Tasks.MockMethodEditorSnoopingTask Class Reference

This task just shows how you can react on the method editor contents and provide context sensitive property standard values. More...

+ Inheritance diagram for MockPlugin.Tasks.MockMethodEditorSnoopingTask:
+ Collaboration diagram for MockPlugin.Tasks.MockMethodEditorSnoopingTask:

Public Member Functions

void PreValidate ()
 Called before the schedule construction is completed. More...
 
void PostValidate ()
 Called after the schedule construction is completed. More...
 
void Execute ()
 Do whatever you have to do with your parameters. More...
 
string GetTaskAction ()
 Description of the tasks's action (for hints/time table) More...
 

Properties

string SomeProperty [get, set]
 
IMethodEditorSnooper MethodEditorSnooper [get, set]
 Since the getter is internal, the property will not be visible in the method editor. More...
 
- Properties inherited from AxelSemrau.Chronos.Plugin.MethodEditor.IMethodEditorSnoopingTask
IMethodEditorSnooper MethodEditorSnooper [set]
 When your task is used in the method editor, this property will be set by Chronos. More...
 

Detailed Description

This task just shows how you can react on the method editor contents and provide context sensitive property standard values.

Definition at line 8 of file MockMethodEditorSnoopingTask.cs.

Member Function Documentation

◆ Execute()

void MockPlugin.Tasks.MockMethodEditorSnoopingTask.Execute ( )

Do whatever you have to do with your parameters.

Implements AxelSemrau.Chronos.Plugin.ITask.

Definition at line 24 of file MockMethodEditorSnoopingTask.cs.

25  {
26  // nothing to do
27  }

◆ GetTaskAction()

string MockPlugin.Tasks.MockMethodEditorSnoopingTask.GetTaskAction ( )

Description of the tasks's action (for hints/time table)

Implements AxelSemrau.Chronos.Plugin.ITask.

◆ PostValidate()

void MockPlugin.Tasks.MockMethodEditorSnoopingTask.PostValidate ( )

Called after the schedule construction is completed.

Implements AxelSemrau.Chronos.Plugin.ITask.

Definition at line 19 of file MockMethodEditorSnoopingTask.cs.

20  {
21  // nothing to do
22  }

◆ PreValidate()

void MockPlugin.Tasks.MockMethodEditorSnoopingTask.PreValidate ( )

Called before the schedule construction is completed.

Implements AxelSemrau.Chronos.Plugin.ITask.

Definition at line 14 of file MockMethodEditorSnoopingTask.cs.

15  {
16  // nothing to do
17  }

Property Documentation

◆ MethodEditorSnooper

IMethodEditorSnooper MockPlugin.Tasks.MockMethodEditorSnoopingTask.MethodEditorSnooper
getset

Since the getter is internal, the property will not be visible in the method editor.

Definition at line 35 of file MockMethodEditorSnoopingTask.cs.

35 { internal get; set; }

◆ SomeProperty

string MockPlugin.Tasks.MockMethodEditorSnoopingTask.SomeProperty
getset

Definition at line 12 of file MockMethodEditorSnoopingTask.cs.

12 { get; set; }

The documentation for this class was generated from the following file: