Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for findFirstChildNamed (0.15 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Project.java

            for (Node commandNode : getChildren(findFirstChildNamed(getXml(), "buildSpec"), "buildCommand")) {
                String name = findFirstChildNamed(commandNode, "name").text();
                Map<String, String> arguments = new LinkedHashMap<>();
                for (Node dictionaryNode : getChildren(findFirstChildNamed(commandNode, "arguments"), "dictionary")) {
                    String key = findFirstChildNamed(dictionaryNode, "key").text();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/Project.java

            Node moduleManager = findFirstWithAttributeValue(getChildren(getXml(), "component"), "name", "ProjectModuleManager");
            Preconditions.checkNotNull(moduleManager);
            Node modules = findFirstChildNamed(moduleManager, "modules");
            if (modules == null) {
                modules = moduleManager.appendNode("modules");
            }
            return modules;
        }
    
        private Node findCompilerConfiguration() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/Module.java

        }
    
        @Nullable
        private Node findOutputDir() {
            return findFirstChildNamed(getNewModuleRootManager(), "output");
        }
    
        @Nullable
        private Node findTestOutputDir() {
            return findFirstChildNamed(getNewModuleRootManager(), "output-test");
        }
    
        private List<Node> findOrderEntries() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 21.2K bytes
    - Viewed (0)
Back to top