Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getInternalViews (0.19 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/typeregistration/BaseInstanceFactory.java

            if (implementationRegistration == null) {
                return null;
            }
            return new ImplementationInfoImpl<S>(publicType, implementationRegistration, getInternalViews(publicType));
        }
    
        @Override
        public <S extends PUBLIC> ImplementationInfo getManagedSubtypeImplementationInfo(final ModelType<S> publicType) {
            if (!isManaged(publicType)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/builder/TypeBuilderInternal.java

    import org.gradle.platform.base.TypeBuilder;
    
    import java.util.Set;
    
    public interface TypeBuilderInternal<T> extends TypeBuilder<T> {
        Class<?> getDefaultImplementation();
    
        Set<Class<?>> getInternalViews();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 885 bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/typeregistration/InstanceFactory.java

             */
            ModelType<?> getDelegateType();
    
            /**
             * The internal views for the public type.
             */
            Set<ModelType<?>> getInternalViews();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/registry/DefaultTypeBuilder.java

            }
            internalViews.add(internalView);
            return this;
        }
    
        @Override
        public Set<Class<?>> getInternalViews() {
            return internalViews;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/registry/ComponentTypeModelRuleExtractor.java

            }
    
            return ModelType.of(implementation);
        }
    
        private void validateInternalViewsAreInterfaces(TypeBuilderInternal<?> builder) {
            for (Class<?> internalView : builder.getInternalViews()) {
                if (!internalView.isInterface()) {
                    throw new InvalidModelException(String.format("Internal view %s must be an interface.", internalView.getName()));
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/FactoryBasedStructNodeInitializerExtractionStrategy.java

            if (implementationInfo == null) {
                return null;
            }
            Set<ModelType<?>> internalViews = implementationInfo.getInternalViews();
            ModelType<?> delegateType = implementationInfo.getDelegateType();
            StructBindings<S> bindings = bindingsStore.getBindings(publicSchema.getType(), internalViews, delegateType);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top