analyze_class
Analyze Java class structures, methods, and fields by scanning Maven projects and decompiling JAR files to provide accurate class information for code generation.
Instructions
分析Java类的结构、方法、字段等信息
Input Schema
Name | Required | Description | Default |
---|---|---|---|
className | Yes | 要分析的Java类全名 | |
projectPath | Yes | Maven项目根目录路径 |
Input Schema (JSON Schema)
{
"properties": {
"className": {
"description": "要分析的Java类全名",
"type": "string"
},
"projectPath": {
"description": "Maven项目根目录路径",
"type": "string"
}
},
"required": [
"className",
"projectPath"
],
"type": "object"
}