get_class_methods_by_class_full_name
Retrieve all methods of a specified class using its fully qualified name, returning their full names, names, signatures, and IDs. Integrates with the Joern MCP Server for code review and security analysis.
Instructions
Get the methods of a class by its fully qualified name
@param class_full_name: The fully qualified name of the class
@return: List of full name, name, signature and id of methods in the class
Input Schema
Name | Required | Description | Default |
---|---|---|---|
class_full_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"class_full_name": {
"title": "Class Full Name",
"type": "string"
}
},
"required": [
"class_full_name"
],
"title": "get_class_methods_by_class_full_nameArguments",
"type": "object"
}