Watchpoint not triggered when inserting to ArrayList
I have a java program, it has a global variable ArrayList al I put a watchpoint on it to track changes to this variable. I found that watchpoint only gets triggered when there is assignment to the this varible, like this al = new ArrayList, but when I insert into this list, the watchpoint is not getting triggered. I guess this is a normal behaviour. So is there any setting we can do, so that we get trigger everytime we insert or remove from the list.
The actual code for reference
public...