Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for findFirstChildWithAttributeValue (0.36 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/generator/XmlPersistableConfigurationObject.java

            return root == null ? null : Iterables.getFirst(getChildren(root, name), null);
        }
    
        @Nullable
        public static Node findFirstChildWithAttributeValue(@Nullable Node root, String childName, String attribute, String value) {
            return root == null ? null : findFirstWithAttributeValue(getChildren(root, childName), attribute, value);
        }
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top