Пишу простенький ToDo List.
Нужно сделать так, чтобы при нажатии на кнопку "Выполнено", текст, в JList, становился зелёного цвета
Вот код:
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.ArrayList;
public class Window extends JFrame {
private JTextField input = new JTextField("");
private JButton addBtn = new JButton("Добавить");
private JButton deleteBtn = new JButton("Удалить");
private JButton completeBtn = new JButton("Выполнено");
private ArrayList<String> missions = new ArrayList<>();
private DefaultListModel<String> dlm = new DefaultListModel<String>();
private JList<String> list = new JList<String>(dlm);
Window() {
super("ToDo List");
this.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
this.setBounds(100,100,600,200);
Container container = this.getContentPane();
container.setLayout(new GridLayout(5, 3));
addBtn.addActionListener(new AddActionListener());
deleteBtn.addActionListener(new DeleteActionListener());
container.add(input);
container.add(addBtn);
container.add(deleteBtn);
container.add(completeBtn);
container.add(new JScrollPane(list));
setVisible(true);
}
class AddActionListener implements ActionListener {
@Override
public void actionPerformed(ActionEvent e) {
dlm.add(dlm.getSize(), input.getText());
}
}
class DeleteActionListener implements ActionListener {
@Override
public void actionPerformed(ActionEvent e) {
dlm.remove(list.getSelectedIndex());
}
}
class CompleteActionListener implements ActionListener {
@Override
public void actionPerformed(ActionEvent e) {
// Не знаю как реализовать данный класс
}
}
}