Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for addActionMethod (0.12 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

                for (Method method : actionMethods) {
                    Method overload = findClosureOverload(method, closureMethods.get(method.getName()));
                    if (overload == null) {
                        visitor.addActionMethod(method);
                    }
                }
            }
    
            @Nullable
            private Method findClosureOverload(Method method, Collection<Method> candidates) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                    // END
                    _IRETURN_OF(returnType);
                }});
            }
    
            @Override
            public void addActionMethod(Method method) {
                if (!mixInDsl) {
                    return;
                }
    
                Type returnType = getType(method.getReturnType());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
Back to top