I'm new to Java threads and after testing to see how they work, I can't figure out how to make them do calculations and return the result the way I want.
For example, in my current program, I want my thread to query a database by calling a method that returns the data in a Vector object when I click a JButton. Then, with that vector object, I want to add each index (an array) as a row in a JTable.
What would be the correct way to accomplish this? I know I could use a setter on my JTable in the calling class but I'm sure there has to be a more "correct" way.