Interface ScriptFunctionDocProvider
- All Known Implementing Classes:
- PropertiesFileDocProvider
public interface ScriptFunctionDocProvider
- 
Field SummaryFields
- 
Method SummaryModifier 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 the- ScriptManager.
- m- The- Methodbeing 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 the- ScriptManager.
- m- The- Methodbeing 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 the- ScriptManager.
- m- The- Methodbeing added as a scripting function.
- Returns:
- A description of the function's return value.
 
 
-