Interface Tree.OnTraverseNodeFunc

Enclosing class:
Tree
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public static interface Tree.OnTraverseNodeFunc
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    onTraverseNodeFunc(CallbackHandler __self, ch.bailu.gtk.glib.TreeNode node, Pointer user_data)
    Specifies the type of function passed to g_tree_foreach_node().
  • Method Details

    • onTraverseNodeFunc

      boolean onTraverseNodeFunc(CallbackHandler __self, @Nonnull ch.bailu.gtk.glib.TreeNode node, @Nullable Pointer user_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.
      Parameters:
      node - a #GTreeNode
      user_data - user data passed to g_tree_foreach_node()
      Returns:
      %TRUE to stop the traversal