I am using rxtx library for serial communication and for GUI i have used JTextArea to display the input and output.
The implementation is similar to a terminal tool, where i am trying to implement TAB key functionality as same in linux console or in windows command prompt (the respective suggestions will be shown).
for e.g
if i type cd command and press TAB key all the suggestions will be shown or particular suggestion will get filled automatically in command line.
Is there any library available in JAVA to implement this functionality?
Please help.