Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This method displays some attributes in a Text Area on the main JFrame and works well.

public void display(javax.swing.JTextArea foodDetailsList){

    foodDetailsList.setText("");    //clear content
    foodDetailsList.setLineWrap(true);
    foodDetailsList.append(product_name + "\n");
    foodDetailsList.append(amountAvailable + "\n");

When I try to use a JList, I get errors on ".setText" ".setLineWrap" and ".append" how do I get it to work?

public void display(javax.swing.JList foodDetailsList){

    foodDetailsList.setText("");    //clear content
    foodDetailsList.setLineWrap(true);
    foodDetailsList.append(product_name + "\n");
    foodDetailsList.append(amountAvailable + "\n");
share|improve this question
2  
You should read documentation about JList and how it works. For example here: docs.oracle.com/javase/6/docs/api/javax/swing/JList.html – Sergiy Medvynskyy Feb 24 at 12:46

closed as not a real question by user714965, trashgod, Sean Owen, kleopatra, Frank van Puffelen Feb 24 at 15:01

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Here is a short Example to show you how things work jList and how to append details on JTextArea.Choose proper LayoutManager as per your needs:

import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import javax.swing.AbstractListModel;
import javax.swing.JFrame;
import javax.swing.JList;
import javax.swing.JPanel;
import javax.swing.JTextArea;
import javax.swing.SwingUtilities;
import javax.swing.WindowConstants;

public class JListTest  {
    private JList jList1;
    private JPanel jPanel1;
    private JTextArea jTextArea;
    private JFrame frame;


    public JListTest() {
        initComponents();
    }

    private void initComponents() {

        jPanel1 = new JPanel();
         jList1 = new JList();
        jTextArea = new JTextArea(20,20);
        frame =new JFrame();
        frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);

        jList1.setModel(new AbstractListModel() {
            String[] strings = { "Fish", "Butter", "Eggs" };
            public int getSize() { return strings.length; }
            public Object getElementAt(int i) { return strings[i]; }
        });
        jList1.addMouseListener(new MouseAdapter() {

            public void mouseClicked(MouseEvent evt) {
                jList1MouseClicked(evt);
            }
        });


        jTextArea.setText(" ");
        jPanel1.add(jList1);
        jPanel1.add(jTextArea);
        frame.add(jPanel1);
        frame.pack();
        frame.setVisible(true);


    }
 private void jList1MouseClicked(java.awt.event.MouseEvent evt) {
        jTextArea.append(" product_name : "+(String) jList1.getSelectedValue()+"\n");
    }


    public static void main(String args[]) {
        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                new JListTest();
            }
        });
    }
}
share|improve this answer
.. and this is related to the question in that ... ? – kleopatra Feb 24 at 14:13
@downvoter A comment will be appreciated in order to improve the answer. – joey rohan Feb 24 at 14:36
already did - it's random code unrelated to the question (however bad the question is) – kleopatra Feb 24 at 15:21
@kleopatra Not that random kind."When I try to use a JList, I get errors on ".setText" ".setLineWrap" and ".append" how do I get it to work?".It shows how to get selected value from the JList , and appending it to JTextArea.Deserves an downvote(if not an up vote)? – joey rohan Feb 24 at 15:26
s/he wants to apply those methods on a JList (which fails because they are not available) – kleopatra Feb 24 at 15:52

Not the answer you're looking for? Browse other questions tagged or ask your own question.