Extract classes, interfaces, methods, constructors, and imports from a .java file.
(path: Path)
| 6340 | |
| 6341 | |
| 6342 | def 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 | |
| 6347 | def _is_spock_file(path: Path, ts_result: dict) -> bool: |