Interface Proxy.NodeRO

  • All Superinterfaces:
    NodeRO
    All Known Subinterfaces:
    Proxy.Node
    Enclosing interface:
    Proxy

    public static interface Proxy.NodeRO
    extends NodeRO
    • Method Detail

      • find

        java.util.List<? extends Node> find​(groovy.lang.Closure<java.lang.Boolean> closure)
        Starting from this node, recursively searches for nodes for which closure.call(node) returns true. See Proxy.ControllerRO.find(Closure) for details.
      • find

        java.util.List<? extends Node> find​(boolean withAncestors,
                                            boolean withDescendants,
                                            groovy.lang.Closure<java.lang.Boolean> closure)
        Starting from this node, recursively searches for nodes for which closure.call(node) returns true.
        Since:
        1.7.4 See Proxy.ControllerRO.find(Closure) for details.
      • find

        @Deprecated
        java.util.List<? extends Node> find​(org.freeplane.features.filter.condition.ICondition condition)
        Deprecated.
        since 1.2 use NodeRO.find(NodeCondition) instead.
        Starting from this node, recursively searches for nodes for which condition.checkNode(node) returns true.