package click.kamil.callgraphexporter; import java.util.List; import java.util.Set; public record MethodMetadata( String returnType, Set thrownExceptions, Set modifiers, List annotations, String documentationComment // Optional: Javadoc ) {}