MCPcopy Create free account
hub / github.com/Graphify-Labs/graphify / extract_java

Function extract_java

graphify/extract.py:6342–6344  ·  view source on GitHub ↗

Extract classes, interfaces, methods, constructors, and imports from a .java file.

(path: Path)

Source from the content-addressed store, hash-verified

6340
6341
6342def extract_java(path: Path) -> dict:
6343 """Extract classes, interfaces, methods, constructors, and imports from a .java file."""
6344 return _extract_generic(path, _JAVA_CONFIG)
6345
6346
6347def _is_spock_file(path: Path, ts_result: dict) -> bool:

Calls 1

_extract_genericFunction · 0.85