![]() |
Murl Engine Lua Addon API
Version 1.0 beta
|
The tracker result interface.
The result type.
Murl.Graph.ITrackerResult.TYPE_INFO | Info result. |
Murl.Graph.ITrackerResult.TYPE_WARNING | A warning. |
Murl.Graph.ITrackerResult.TYPE_ERROR | An error. |
Murl.Graph.ITrackerResult.NUM_TYPES |
Clone the result object.
Murl.Graph.ITrackerResult Clone()
Get the graph node the result applies to.
Murl.Graph.INode GetNode()
Get the result type.
Murl.Graph.ITrackerResult.Type GetType()
Get the fully qualified name of the function/method that posted this result.
String GetFunction()
Get the line number within the source file where the result was posted
Integer GetLine()
Get the result message string. This method returns the plain message string, which may optionally contain any number of parameter place holders in the form {N}, with N being a number between 0 and GetParameters().GetCount()-1. To obtain the full message, use Util::FillInParameters(GetMessage(), GetParameters()).
String GetMessage()
Get the array of result parameter strings. This method returns the array of parameters to be inserted into the plain message string. See GetMessage().
Murl.Array.String GetParameters()