Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getInternalViews (0.17 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/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)
Back to top