12 lines
422 B
Java
12 lines
422 B
Java
import java.lang.reflect.Method;
|
|
import io.modelcontextprotocol.server.transport.HttpServletStreamableServerTransportProvider;
|
|
|
|
public class TestReflection {
|
|
public static void main(String[] args) throws Exception {
|
|
Class<?> clazz = HttpServletStreamableServerTransportProvider.Builder.class;
|
|
for (Method m : clazz.getDeclaredMethods()) {
|
|
System.out.println(m.getName());
|
|
}
|
|
}
|
|
}
|