I have a model with some string values.This model, I apply it to two jlists. I need every time that I click from one jlist a value, that value to dissapear from the other. Then the same if it happents to the other jlist but first the values must be updated to those the model contains. I made some effort but with my code when I click one value then it dissapears on both lists! What am I doing wrong? Here is the code:
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package accessfiletest;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import javax.swing.*;
/**
*
* @author
*/
@SuppressWarnings("serial")
public class MoveFolders extends JFrame
{
//start of class MoveFolders
//start of variables
private DefaultListModel<String> theModel;
private DefaultListModel<String> fromModel;
private DefaultListModel<String> toModel;
private JList<String> fromJList;
private JList<String> toList;
private JButton moveButton;
private JPanel theJPanel;
//end of variables
public MoveFolders( DefaultListModel<String> model1)
{
super("Μετακίνηση Εγγράφων από Φάκελο σε Φάκελο");
fromModel=model1;
toModel=model1;
theModel=model1;
theJPanel=new JPanel(null);
fromJList=new JList<>(fromModel);
fromJList.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
fromJList.setSelectedIndex(0);
fromJList.addMouseListener(fromlistener);
JScrollPane frompane=new JScrollPane(fromJList);
frompane.setBounds(50, 50, 200, 150);
theJPanel.add(frompane);
moveButton=new JButton("ΜΕΤΑΚΙΝΗΣΗ >>");
moveButton.setBounds(260, 90, 150, 20);
theJPanel.add(moveButton);
toList=new JList<>(toModel);
if (model1.getSize()>1)
{
toList.setSelectedIndex(1);
}
else
{
JOptionPane.showMessageDialog(null,
"Πρέπει να έχετε πάνω από 1 φάκελο για να γίνει αντιγραφή εγγράφων.
Το παράθυρο θα κλείσει.", "Λάθος", JOptionPane.ERROR_MESSAGE);
dispose();
}
toList.addMouseListener(toListener);
toList.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
JScrollPane topane=new JScrollPane(toList);
topane.setBounds(420, 50, 200, 150);
theJPanel.add(topane);
add(theJPanel);
setDefaultCloseOperation(DISPOSE_ON_CLOSE);
setSize(670, 300);
setVisible(true);
}
MouseListener fromlistener = new MouseAdapter() {
public void mouseClicked(MouseEvent e) {
if (e.getClickCount() == 1) {
final int index = fromJList.locationToIndex(e.getPoint());
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
toModel=theModel;
toModel.remove(index);
}
});
}
}
};
MouseListener toListener = new MouseAdapter() {
public void mouseClicked(MouseEvent e) {
if (e.getClickCount() == 1) {
final int index = fromJList.locationToIndex(e.getPoint());
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
fromModel=theModel;
fromModel.remove(index);
}
});
}
}
};
}//end of class MoveFolders