Files
Dynamic-Form-Tools/CheckAPI.java
skidus d42a514f44 refactor(config): refine file browser path resolution and clean up test scripts
- Finalized the resolvePath logic in DynFormConfigurable to ensure strict project-root orientation.
- Cleaned up temporary test scripts and agent artifacts.
- Included minor updates to resource examples.
2026-04-18 13:54:21 +07:00

19 lines
632 B
Java

import com.intellij.openapi.fileEditor.ex.FileEditorManagerEx;
import java.lang.reflect.Method;
public class CheckAPI {
public static void main(String[] args) {
try {
Class<?> clazz = FileEditorManagerEx.class;
System.out.println("Methods in FileEditorManagerEx:");
for (Method m : clazz.getMethods()) {
if (m.getName().toLowerCase().contains("open")) {
System.out.println(m.getName() + " -> " + m.getParameterCount() + " params");
}
}
} catch (Exception e) {
e.printStackTrace();
}
}
}