I have an wrapping object array -in fact a matrix- which includes a checkbox, I want to detect this object's position in array when included checkbox's state changes
public class visualCell implements ItemSelectable{ private JCheckBox checkBox; private int row; private int col; }
when a checkbox changes it's state, I want to be able to access the visualCell object which includes that, if that is possible. I add the listener to wrapping object by the way.