Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for BridgeMethodBinding (0.34 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/binding/BridgeMethodBinding.java

    import org.gradle.model.internal.method.WeaklyTypeReferencingMethod;
    
    /**
     * Method binding for bridge methods calling through to other view methods.
     */
    public class BridgeMethodBinding extends AbstractDelegationBinding {
        public BridgeMethodBinding(WeaklyTypeReferencingMethod<?, ?> source, WeaklyTypeReferencingMethod<?, ?> target, PropertyAccessorType accessorType) {
            super(source, target, accessorType);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/binding/StructBindings.java

     *     <li>abstract methods that are present in the public type are bridged to the public implementation (see {@link BridgeMethodBinding})</li>
     *     <li>abstract methods that are present in the delegate type are delegated to an instance of the delegate type (see {@link DelegateMethodBinding})</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

    import org.gradle.model.internal.asm.AsmClassGenerator;
    import org.gradle.model.internal.asm.AsmClassGeneratorUtils;
    import org.gradle.model.internal.core.MutableModelNode;
    import org.gradle.model.internal.manage.binding.BridgeMethodBinding;
    import org.gradle.model.internal.manage.binding.DelegateMethodBinding;
    import org.gradle.model.internal.manage.binding.DirectMethodBinding;
    import org.gradle.model.internal.manage.binding.ManagedProperty;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/binding/DefaultStructBindingsStore.java

                    binding = new DirectMethodBinding(weakImplementedMethod, accessorType);
                } else if (weakPublicImplMethod != null) {
                    binding = new BridgeMethodBinding(weakImplementedMethod, weakPublicImplMethod, accessorType);
                } else if (weakDelegateImplMethod != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 29.7K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.model.internal.manage.binding.BridgeMethodBinding> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (BridgeMethodBinding.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top