JavaFile represents a parsed Java source file
| 7 | |
| 8 | // JavaFile represents a parsed Java source file |
| 9 | type JavaFile struct { |
| 10 | Path string |
| 11 | Package string |
| 12 | Imports []string |
| 13 | Classes []*ClassNode |
| 14 | } |
| 15 | |
| 16 | // ClassNode represents a class or interface |
| 17 | type ClassNode struct { |
nothing calls this directly
no outgoing calls
no test coverage detected