Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DirectMethodBinding (0.16 sec)

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

    import org.gradle.model.internal.method.WeaklyTypeReferencingMethod;
    
    /**
     * Method binding for methods implemented by the view.
     */
    public class DirectMethodBinding extends AbstractStructMethodBinding implements StructMethodImplementationBinding {
        public DirectMethodBinding(WeaklyTypeReferencingMethod<?, ?> source, PropertyAccessorType accessorType) {
            super(source, accessorType);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/binding/StructBindings.java

     * There are three ways a method can be implemented like:
     * </p>
     *
     * <ul>
     *     <li>non-abstract methods on the public view are implemented by the view itself (see {@link DirectMethodBinding})</li>
     *     <li>abstract methods that are present in the public type are bridged to the public implementation (see {@link BridgeMethodBinding})</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top