Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for assertIsMethod (0.1 sec)

  1. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/event/BroadcastDispatch.java

        public BroadcastDispatch<T> add(String methodName, Action<?> action) {
            assertIsMethod(methodName);
            return add(action, new ActionInvocationHandler(methodName, Cast.<Action<Object>>uncheckedNonnullCast(action)));
        }
    
        abstract BroadcastDispatch<T> add(Object handler, Dispatch<MethodInvocation> dispatch);
    
        private void assertIsMethod(String methodName) {
            for (Method method : type.getMethods()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:00:00 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top