Interface ScriptFunctionDocProvider
- All Known Implementing Classes:
PropertiesFileDocProvider
public interface ScriptFunctionDocProvider
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptiongetMethodDescription(String path, Method m) getParameterDescriptions(String path, Method m) getReturnValueDescription(String path, Method m)
-
Field Details
-
NO_DOC_PROVIDER
-
-
Method Details
-
getMethodDescription
- Parameters:
path- The path this function is being added at, as given to theScriptManager.m- TheMethodbeing added as a scripting function.- Returns:
- A description of what the function does.
-
getParameterDescriptions
- Parameters:
path- The path this function is being added at, as given to theScriptManager.m- TheMethodbeing added as a scripting function.- Returns:
- Map of parameter names matched to their descriptions.
-
getReturnValueDescription
- Parameters:
path- The path this function is being added at, as given to theScriptManager.m- TheMethodbeing added as a scripting function.- Returns:
- A description of the function's return value.
-