Chronos Plugins 5.9.0
This documentation covers the plugin interfaces definitions and an example implementation.
|
Implement this interface if you have to know (usually for validation) if a certain property of a given task will be filled in later by a {jit:} scripting expression. More...
Properties | |
JITCheckerDelegate | JITChecker [set] |
Chronos will provide a function that you can use to check for JIT expressions in properties. | |
Additional Inherited Members | |
Public Member Functions inherited from AxelSemrau.Chronos.Plugin.ITask | |
void | PreValidate () |
Called before the schedule construction is completed. | |
void | PostValidate () |
Called after the schedule construction is completed. | |
void | Execute () |
Do whatever you have to do with your parameters. | |
string | GetTaskAction () |
Description of the tasks's action (for hints/time table) | |
Implement this interface if you have to know (usually for validation) if a certain property of a given task will be filled in later by a {jit:} scripting expression.
A simple implementation could be JITCheckerDelegate INeedToCheckForJITLinks.JITChecker { set { mJITChecker = value; } }
Definition at line 502 of file TaskInterfaces.cs.
|
set |
Chronos will provide a function that you can use to check for JIT expressions in properties.
Implemented in MockPlugin.Tasks.JobInspectionDemo.
Definition at line 507 of file TaskInterfaces.cs.