Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for addgonote (0.1 sec)

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

                getXml().remove(libraryTable);
                return;
            }
            libraryTable.setValue(new NodeList());
            for (ProjectLibrary library : projectLibraries) {
                library.addToNode(libraryTable, pathFactory);
            }
        }
    
        private Node findProjectRootManager() {
            return findFirstWithAttributeValue(getChildren(getXml(), "component"), "name", "ProjectRootManager");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/Module.java

        }
    
        private void addDependenciesToXml() {
            Node moduleRoot = getNewModuleRootManager();
            for (Dependency dependency : dependencies) {
                dependency.addToNode(moduleRoot);
            }
        }
    
        private Node getNewModuleRootManager() {
            Node newModuleRootManager = findFirstWithAttributeValue(getChildren(getXml(), "component"), "name", "NewModuleRootManager");
    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