- All Superinterfaces:
NodeRO
- All Known Subinterfaces:
Proxy.Node
- Enclosing interface:
- Proxy
public static interface Proxy.NodeRO
extends NodeRO
-
Method Summary
Modifier and Type |
Method |
Description |
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.
|
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.
|
java.util.List<? extends Node> |
find(org.freeplane.features.filter.condition.ICondition condition) |
Deprecated.
|
Methods inherited from interface org.freeplane.api.NodeRO
allAt, at, find, find, findAll, findAllDepthFirst, getAlias, getAt, getAttributes, getBaseDistanceToChildrenAsLength, getBinary, getBranchAsTextOutline, getChildNodesLayout, getChildPosition, getChildren, getCloud, getConditionalStyles, getConnectorsIn, getConnectorsOut, getCountNodesSharingContent, getCountNodesSharingContentAndSubtree, getCreatedAt, getDependents, getDetails, getDetailsContentType, getDetailsText, getDisplayedText, getExternalObject, getFormat, getGeometry, getHideDetails, getHorizontalShift, getHorizontalShiftAsLength, getHorizontalShiftInScreenPixels, getHtmlText, getIcons, getId, getIsGlobal, getLastModifiedAt, getLayoutOrientation, getLink, getMap, getMindMap, getMinimalDistanceBetweenChildren, getMinimalDistanceBetweenChildrenAsLength, getMinimalDistanceBetweenChildrenInScreenPixels, getNext, getNodeID, getNodeLevel, getNodesSharingContent, getNodesSharingContentAndSubtree, getNote, getNoteContentType, getNoteText, getObject, getParent, getParentNode, getPathToRoot, getPlainText, getPlainTextContent, getPrecedents, getPrevious, getReminder, getShortText, getSideAtRoot, getStyle, getText, getTo, getTransformedText, getValue, getVerticalShift, getVerticalShiftAsLength, getVerticalShiftInScreenPixels, hasStyle, isDescendantOf, isFolded, isFree, isLeaf, isLeft, isLeftOnViewsWithRoot, isMinimized, isRoot, isTopOrLeft, isTopOrLeftOnViewsWithRoot, isVisible, isVisibleOnViewsWithRoot
-
Method Details
-
find
java.util.List<? extends Node> find(
groovy.lang.Closure<java.lang.Boolean> closure)
-
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.
Starting from this node, recursively searches for nodes for which
condition.checkNode(node)
returns true.
NodeRO.find(NodeCondition)
instead.