Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for MyComponentInternal (0.14 sec)

  1. platforms/documentation/docs/src/snippets/customModel/internalViews/groovy/build.gradle

        void registerMyComponent(TypeBuilder<MyComponent> builder) {
            builder.internalView(MyComponentInternal)
        }
    // end::type-registration[]
    // tag::internal-view-mutation[]
        @Mutate
        void mutateMyComponents(ModelMap<MyComponentInternal> components) {
            components.all { component ->
                component.publicData = "Some PUBLIC data"
                component.internalData = "Some INTERNAL data"
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/InternalViewsSampleIntegrationTest.groovy

                         ⤷ MyPlugin#mutateMyComponents(ModelMap<MyComponentInternal>)
                    + my
                          | Type:   \tMyComponent
                          | Creator: \tcomponents { ... } @ build.gradle line 37, column 5 > create(my)
                          | Rules:
                             ⤷ MyPlugin#mutateMyComponents(ModelMap<MyComponentInternal>) > all()
                        + publicData
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/customModel/internalViews/tests/softwareModelExtend-iv-model.out

             ⤷ components { ... } @ build.gradle line 37, column 5
             ⤷ MyPlugin#mutateMyComponents(ModelMap<MyComponentInternal>)
        + my
              | Type:   	MyComponent
              | Creator: 	components { ... } @ build.gradle line 37, column 5 > create(my)
              | Rules:
                 ⤷ MyPlugin#mutateMyComponents(ModelMap<MyComponentInternal>) > all()
            + publicData
                  | Type:   	java.lang.String
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:33:19 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top