It my first work with swing
, help please.
//In this texfield should be an array of digits like this: 10, 5, 8, 1, 11
private JTextField setATextField = new JTextField(10);
private JButton button = new JButton("Button");
//....
//....
public class UnionActionListener implements ActionListener {
@Override
public void actionPerformed(ActionEvent event) {
ArrayList<Integer> setA = new ArrayList<>();
}
}
How to add this digits in arraylist
?
it must be like this:
JTextField field = new JTextField("10, 5, 8, 1, 11", 10);
setA.get(0) = 10;
setA.get(1) = 5;
setA.get(2) = 8;
//......