Answer on Question #44265- Programming, Java | JSP | JSF
1. Have you any idea how to get information from a class to appear in a text area on a GUI when you click a word in a list box on the GUI?
Solution.
private void jList1MouseClicked(java.awt.event.MouseEvent evt) {
jTextField1.setText(jList1.getSelectedValue().toString());
}http://www.AssignmentExpert.com/