I\'m trying to set an int value using jTextField and the setText method. But of course setText wants a String. How do I get round this? I\'ll give you a snippet of the code:
Assuming age field is of type int, you could try something like:
ageTF.setText( Integer.toString(e.getAge()) );