JTextBox with Memory capability
Whenever I enter a character in a JTextBox , it should display
all the words that arepreviously entered into that JTextBox.
For example, assume that I already entered a word called "Table"
in a JTextBox and some time later I am coming back to the same
JTextField and entering the character 'T', now the JTextBox should automatically display the word "Table" and other words that are starting with the letter 'T'.
How can I get the above functionality?

