Hi im trying to create an arrayList but of boolean type any ideas how i do this?
private List<boolean> list = new ArrayList<boolean>();
private List<Integer> list2 = new ArrayList<Integer>();
Here's my attempt and it says ''type java.awt.List does not take parameters'' when i try to compile.