Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for parseNodeListAttribute (0.25 sec)

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

            super(node);
            this.output = normalizePath((String) node.attribute("output"));
            this.includes = parseNodeListAttribute(node, "including");
            this.excludes = parseNodeListAttribute(node, "excluding");
        }
    
        private List<String> parseNodeListAttribute(Node node, String attributeName) {
            Object attribute = node.attribute(attributeName);
            if (attribute == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top