This commit is contained in:
11
TestReflection.java
Normal file
11
TestReflection.java
Normal file
@@ -0,0 +1,11 @@
|
||||
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());
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user