Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for addgonote (0.32 sec)

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

         */
        String getScope();
    
        /**
         * The scope of this library. If <code>null</code>, the scope attribute is not added.
         * @since 4.5
         */
        void setScope(String scope);
    
        void addToNode(Node parentNode);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/ModuleDependency.java

        }
    
        public boolean isExported() {
            return exported;
        }
    
        public void setExported(boolean exported) {
            this.exported = exported;
        }
    
        @Override
        public void addToNode(Node parentNode) {
            Map<String, Object> attributes = new LinkedHashMap<>();
            attributes.put("type", "module");
            attributes.put("module-name", name);
            if (exported) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/idea/model/ProjectLibraryTest.groovy

            def pathFactory = new PathFactory()
            pathFactory.addPathVariable("USER_HOME", userHome)
    
            when:
            def parent = new Node(null, "parent")
            lib.addToNode(parent, pathFactory)
    
            then:
            def writer = new StringWriter()
            def printer = new XmlNodePrinter(new IndentPrinter(writer))
            printer.print(parent)
            writer.toString().trim() == """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/ProjectLibrary.java

         */
        public Set<File> getSources() {
            return sources;
        }
    
        public void setSources(Set<File> sources) {
            this.sources = sources;
        }
    
        public void addToNode(Node parentNode, PathFactory pathFactory) {
            Map<String, Object> libraryAttributes = new LinkedHashMap<>();
            libraryAttributes.put("name", name);
            if (type != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/ModuleLibrary.java

         */
        public boolean isExported() {
            return exported;
        }
    
        public void setExported(boolean exported) {
            this.exported = exported;
        }
    
        @Override
        public void addToNode(Node parentNode) {
            Map<String, Object> orderEntryAttributes = new LinkedHashMap<>();
            orderEntryAttributes.put("type", "module-library");
            orderEntryAttributes.putAll(getAttributeMapForScopeAndExported());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top