Добавление JList в JPanel отличается от JLabel (помимо очевидного), почему? - PullRequest
1 голос
/ 03 марта 2012

У нас есть контроллер, в котором у нас есть предварительно объявленные JList и JLabel, которые мы добавляем в JPanel. За пределами исходного макета / кода добавления я могу обновить JLabel (например, изменить его текст), но не могу изменить выбор JList (например, jlist.setSelection (index)), где он будет обновлять пользовательский интерфейс. Код ниже:

public class Test {
    private JPanel myPanel;
    private JList myList;
    private JLabel myLabel;

    public Test() {
         //Some init code here...
         this.myPanel = new JPanel();
         this.myPanel.setLayout(new GridBagLayout());

         GridBagConstraints gbc = new GridBagConstraints();

         String[] values = {"Value1", "Value2", "Value3", "Value4"}; //etc. etc.
         this.myList = new JList(values);
         this.myPanel.add(this.myList, gbc); //Add to panel

         this.myLabel = new JLabel("Label1");
         this.myPanel.add(this.myLabel, gbc); //Add to panel

         //Add some code here to add it to a frame or something to display
    }


    public void updateLabel(String workingNewLabel) {

         //The following works...
         this.myLabel.setText(workingNewLabel); 
          // as in the label component in the JPanel will 
          //now be updated to the new value of workingNewLabel
    }

    public void changeSelectionInListToSomeIndex(int nonWorkingNewIndex) {

         //The following does NOT update the JList in the panel... 
         //the selection remains whatever it was last set to.

         this.myList.setSelectedIndex(nonWorkingNewIndex);
    }
}

Мне удалось обойти это, перебрав все компоненты в myPanel в поисках компонента JList, а затем присвоив ему значение myList, например.

//Code that goes after the line this.myPanel.add(this.myList, gbc);
for(Component component : this.myPanel.getComponents() ) {
     //Iterate through it all until...
     if (component.getClass() == this.myList.getClass()) {
         this.myList = (JList) component; //cast the component as JList
     }
 }

Почему я должен делать это для JList, а не для JLabel? Это обходной путь, но кажется, что он очень хакерский.

Заранее спасибо! -Daniel

1 Ответ

2 голосов
/ 03 марта 2012

@ JB верно.Вот рабочая sscce :

test

/** @see http://stackoverflow.com/q/9540263/230513 */
public class Test {

    private static Test test = new Test();
    private JPanel myPanel;
    private JList myList;
    private JLabel myLabel;

    public Test() {
        myPanel = new JPanel();
        myPanel.setLayout(new GridBagLayout());
        GridBagConstraints gbc = new GridBagConstraints();
        String[] values = {"Value1", "Value2", "Value3", "Value4"};
        myList = new JList(values);
        myPanel.add(this.myList, gbc);
        myLabel = new JLabel("Label1");
        myPanel.add(this.myLabel, gbc);
        myPanel.add(new JButton(new AbstractAction("Select Value3") {

            @Override
            public void actionPerformed(ActionEvent e) {
                test.updateList(2);
            }
        }));
    }

    public void updateLabel(String label) {
        myLabel.setText(label);
    }

    public void updateList(int index) {
        myList.setSelectedIndex(index);
    }

    public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {

            @Override
            public void run() {
                JFrame f = new JFrame();
                f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                f.add(test.myPanel);
                f.pack();
                f.setLocationByPlatform(true);
                f.setVisible(true);
            }
        });
    }
}
...