Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NodeVisitor (0.27 sec)

  1. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileHierarchySet.java

            }
    
            @VisibleForTesting
            List<String> flatten() {
                final List<String> prefixes = new ArrayList<String>();
                rootNode.visitHierarchy(0, new NodeVisitor() {
                    @Override
                    public void visitNode(int depth, Node node) {
                        if (depth == 0) {
                            prefixes.add(node.prefix);
                        } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/Node.java

         *
         * @param visitor the visitor to call back, must not be {@code null}
         * @return {@code true} to visit siblings nodes of this node as well, {@code false} to skip siblings
         */
        boolean accept(@Nonnull NodeVisitor visitor);
    
        /**
         * Returns a new tree starting at this node, filtering the children.
         * Note that this node will not be filtered and only the children
         * and its descendant will be checked.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top