Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ClosureBackedMethodInvocationDispatch (0.55 sec)

  1. subprojects/core/src/main/java/org/gradle/listener/ClosureBackedMethodInvocationDispatch.java

    import org.gradle.internal.dispatch.MethodInvocation;
    
    import java.util.Arrays;
    
    public class ClosureBackedMethodInvocationDispatch implements Dispatch<MethodInvocation> {
        private final String methodName;
        private final Closure closure;
    
        public ClosureBackedMethodInvocationDispatch(String methodName, Closure closure) {
            this.methodName = methodName;
            this.closure = closure;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 12:43:02 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top