Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for BeanProperty (3.01 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultNamedDomainObjectSetSpec.groovy

            container.add(bean);
    
            when:
            container.child {
                beanProperty = 'value'
            }
    
            then:
            bean.beanProperty == 'value'
    
            when:
            container.invokeMethod("child") {
                beanProperty = 'value 2'
            }
    
            then:
            bean.beanProperty == 'value 2'
        }
    
        def cannotInvokeUnknownMethod() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:21:31 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  2. maven-embedder/src/main/java/org/eclipse/sisu/plexus/PlexusXmlBeanConverter.java

            final Object bean = newImplementation(clazz);
    
            // build map of all known bean properties belonging to the chosen implementation
            final Map<String, BeanProperty<Object>> propertyMap = new HashMap<>();
            for (final BeanProperty<Object> property : new BeanProperties(clazz)) {
                final String name = property.getName();
                if (!propertyMap.containsKey(name)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/BeanDynamicObject.java

                        continue;
                    }
                    if (metaProperty instanceof MetaBeanProperty) {
                        MetaBeanProperty beanProperty = (MetaBeanProperty) metaProperty;
                        if (beanProperty.getGetter() == null) {
                            continue;
                        }
                    }
                    properties.put(metaProperty.getName(), metaProperty.getProperty(bean));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 29.3K bytes
    - Viewed (0)
Back to top