I want to know if i can implement scrollable results with picocli app. Example:
GetTracks
which outputs the list of results
>TrackA
TrackB
TrackC
and user can scroll up or down and select a track he wants ? I want to know if this functionality is possible with picocli?
Unfortunately no,
picocli
only deals with how command arguments are parsed and represented to the programmer. Any further menus will need to be handled by you, the programmer. You can make something similar to this using a simple number entering workflow. Where the use enters the number of the desired menu item:You may be able to produce this workflow you are looking for by leveraging a library like
lanterna
. A VERY simple implementation might look like this:The above example will read a single input from either keyboard or mouse, and change the selected track depending on the direction of the scroll. You will want to do some more logic and workflow control (to rectify some pretty obvious bugs), but this should get you started, if you decide to go down this path.