12 lines
310 B
Java
12 lines
310 B
Java
package click.kamil.callgraphexporter;
|
|
|
|
import java.util.List;
|
|
import java.util.Set;
|
|
|
|
public record MethodMetadata(
|
|
String returnType,
|
|
Set<String> thrownExceptions,
|
|
Set<Modifiers> modifiers,
|
|
List<String> annotations,
|
|
String documentationComment // Optional: Javadoc
|
|
) {} |