walkCommands abstract method

Iterable<Command<T>> walkCommands()

Returns an iterable that recursively iterates over all the Commands in this group.

This will return all the Commands in this group, whether they be direct children or children of children. If you want all the direct Command children, consider using children.whereType<ICommand>() instead.

Implementation

Iterable<Command<T>> walkCommands();