MCPcopy Create free account
hub / github.com/Yuy0ung/YuC0de / JavaFile

Struct JavaFile

backend/engine/java_parser.go:9–14  ·  view source on GitHub ↗

JavaFile represents a parsed Java source file

Source from the content-addressed store, hash-verified

7
8// JavaFile represents a parsed Java source file
9type JavaFile struct {
10 Path string
11 Package string
12 Imports []string
13 Classes []*ClassNode
14}
15
16// ClassNode represents a class or interface
17type ClassNode struct {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected