Package ch.bailu.gtk.glib
Schnittstelle Tree.OnTraverseNodeFunc
- Umschließende Klasse:
Tree
- Funktionsschnittstelle:
- Dies ist eine funktionale Schnittstelle, die somit als Zuweisungsziel für einen Lambdaausdruck oder eine Methodenreferenz verwendet werden kann.
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungboolean
onTraverseNodeFunc
(CallbackHandler __self, ch.bailu.gtk.glib.TreeNode node, Pointer data) Specifies the type of function passed to g_tree_foreach_node().
-
Methodendetails
-
onTraverseNodeFunc
boolean onTraverseNodeFunc(CallbackHandler __self, @Nonnull ch.bailu.gtk.glib.TreeNode node, @Nullable Pointer data) Specifies the type of function passed to g_tree_foreach_node(). It is
passed each node, together with the @user_data parameter passed to
g_tree_foreach_node(). If the function returns %TRUE, the traversal is
stopped.- Parameter:
node
- a #GTreeNodedata
- user data passed to g_tree_foreach_node()- Gibt zurück:
- %TRUE to stop the traversal
-